diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-10 17:31:04 +1000 |
| commit | 6b64c8a91804058fea99ed6944753758ee92c543 (patch) | |
| tree | 9bf1d152c1f7e2135515e8302c93821d3e29b184 /run.fish | |
| parent | launcher: better style (diff) | |
| download | caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.gz caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.tar.bz2 caelestia-shell-6b64c8a91804058fea99ed6944753758ee92c543.zip | |
feat: basic notifications
Also fix pixel issue with notif area background
Add more log rules to run script
Diffstat (limited to 'run.fish')
| -rwxr-xr-x | run.fish | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,10 +2,12 @@ set -l dbus 'quickshell.dbus.properties.warning = false' # System tray dbus property errors set -l text_input 'qt.qpa.wayland.textinput.warning = false' # Text input focus when open window +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 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 process 'QProcess: Destroyed while process' # Long running processes on reload set -l async_loader 'items in the process of being created at engine destruction' # Async loaders on reload -qs -c caelestia --log-rules "$dbus;$text_input" | grep -vE -e $hypr -e $intercept -e $loop -e $process -e $async_loader +qs -c caelestia --log-rules "$dbus;$text_input;$notifs;$sni" | grep -vE -e $hypr -e $intercept -e $loop -e $process -e $async_loader |