diff options
Diffstat (limited to 'run.fish')
| -rwxr-xr-x | run.fish | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -5,6 +5,7 @@ set -l hypr 'invalid nullptr parameter' # Error that always pops up on Hyprland set -l intercept '^qsintercept:.*(:[0-9]+){2}$' # Empty qsintercept lines 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 process 'QProcess: Destroyed while process' +set -l process 'QProcess: Destroyed while process' # Long running processes on reload +set -l asyncLoader 'items in the process of being created at engine destruction' # Async loaders on reload -qs -c caelestia --log-rules $dbus | grep -vE -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 -e $asyncLoader |