blob: 0eb886eb9134746ecb1a73f82fae0d8b8b543cf0 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/fish
set -l dbus 'quickshell.dbus.properties.warning = false' # System tray dbus property errors
set -l notifs 'quickshell.service.notifications.warning = false' # Notification server warnings on reload
set -l sni 'quickshell.service.sni.host.warning = false' # StatusNotifierItem warnings on reload
set -l process 'QProcess: Destroyed while process' # Long running processes on reload
qs -c caelestia --log-rules "$dbus;$notifs;$sni" | grep -vE -e $process
|