summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 23:40:36 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-05-02 23:40:36 +1000
commitec50b03dcda62089c9800919be1f58c5e61b6941 (patch)
tree8fdf5a7d3d6ddb662a0c4adcad6cba146eed9b03
parentfeat: launcher keyboard nav (diff)
downloadcaelestia-shell-ec50b03dcda62089c9800919be1f58c5e61b6941.tar.gz
caelestia-shell-ec50b03dcda62089c9800919be1f58c5e61b6941.tar.bz2
caelestia-shell-ec50b03dcda62089c9800919be1f58c5e61b6941.zip
dev: run script ignore textinput warnings
-rwxr-xr-xrun.fish5
1 files changed, 3 insertions, 2 deletions
diff --git a/run.fish b/run.fish
index 9407830..fc5b18b 100755
--- a/run.fish
+++ b/run.fish
@@ -1,10 +1,11 @@
#!/bin/fish
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 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 asyncLoader 'items in the process of being created at engine destruction' # Async loaders 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 | grep -vE -e $hypr -e $intercept -e $loop -e $process -e $asyncLoader
+qs -c caelestia --log-rules "$dbus;$text_input" | grep -vE -e $hypr -e $intercept -e $loop -e $process -e $async_loader