summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 00:01:16 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-01 00:01:16 +1000
commitd0211b00dba0501c3b8aacc20367730d7da1152a (patch)
treec77e34cb725525d43aa9db38fc1df19ab0641e63
parentbar: use loader instead of swipeview (diff)
downloadcaelestia-shell-d0211b00dba0501c3b8aacc20367730d7da1152a.tar.gz
caelestia-shell-d0211b00dba0501c3b8aacc20367730d7da1152a.tar.bz2
caelestia-shell-d0211b00dba0501c3b8aacc20367730d7da1152a.zip
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)
-rwxr-xr-xrun.fish4
1 files changed, 2 insertions, 2 deletions
diff --git a/run.fish b/run.fish
index 2a1f7a2..7af0975 100755
--- a/run.fish
+++ b/run.fish
@@ -2,9 +2,9 @@
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 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'
-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