dev: fix run script

It was hiding other important qsintercepts, so make it only hide empty ones (i.e. ones with only file:line:column)
This commit is contained in:
2 * r + 2 * t 2025-05-01 00:01:16 +10:00
parent 9339394e07
commit d0211b00db

View file

@ -2,9 +2,9 @@
set -l dbus 'quickshell.dbus.properties.warning = false' # System tray dbus property errors set -l dbus 'quickshell.dbus.properties.warning = false' # System tray dbus property errors
set -l hypr 'invalid nullptr parameter' # Error that always pops up on Hyprland set -l hypr 'invalid nullptr parameter' # Error that always pops up on Hyprland
set -l intercept '^qsintercept:' # Line before binding loop set -l intercept '^qsintercept:.*(:[0-9]+){2}$' # Empty qsintercept lines
set -l loop 'Binding loop detected' # Binding loops set -l loop 'Binding loop detected' # Binding loops
set -l icons 'Searching custom icon paths is not yet supported' # Error for system tray icons set -l icons 'Searching custom icon paths is not yet supported' # Error for system tray icons
set -l process 'QProcess: Destroyed while process' set -l process 'QProcess: Destroyed while process'
qs -c caelestia --log-rules $dbus | grep -v -e $hypr -e $intercept -e $loop -e $icons -e $process qs -c caelestia --log-rules $dbus | grep -vE -e $hypr -e $intercept -e $loop -e $icons -e $process