dev: run script for ignoring certain log messages
This commit is contained in:
parent
7f93c3ed13
commit
10a3abc955
1 changed files with 9 additions and 0 deletions
9
run.fish
Executable file
9
run.fish
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/fish
|
||||
|
||||
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 intercept '^qsintercept:' # Line before binding loop
|
||||
set -l loop 'Binding loop detected' # Binding loops
|
||||
set -l icons 'Searching custom icon paths is not yet supported' # Error for system tray icons
|
||||
|
||||
qs -c caelestia --log-rules $dbus | grep -v -e $hypr -e $intercept -e $loop -e $icons
|
||||
Loading…
Add table
Reference in a new issue