diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-11 01:35:53 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | e44f3c46c8e3bf0ca74e780375599316fe5f2396 (patch) | |
| tree | 50a6a512e7b9fdafe53a48382bc0e4eabca68a5d /config/hypr/scripts/OverviewToggle.sh | |
| parent | 5c3d43b34594e2f7a6f4edd0640d2e44c51c8875 (diff) | |
Added qs-hyprview as alternative overview CTRL-TAB
Signed-off-by: Don Williams <Don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/configs/Startup_Apps.conf
modified: config/hypr/lua/keybinds.lua
modified: config/hypr/lua/startup.lua
modified: config/hypr/scripts/OverviewToggle.sh
modified: config/hypr/scripts/Refresh.sh
modified: config/hypr/scripts/RefreshNoWaybar.sh
new file: config/quickshell/qs-hyprview
Diffstat (limited to 'config/hypr/scripts/OverviewToggle.sh')
| -rwxr-xr-x | config/hypr/scripts/OverviewToggle.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/hypr/scripts/OverviewToggle.sh b/config/hypr/scripts/OverviewToggle.sh index 7c55ae82..7f2fc831 100755 --- a/config/hypr/scripts/OverviewToggle.sh +++ b/config/hypr/scripts/OverviewToggle.sh @@ -10,6 +10,7 @@ set -euo pipefail QS_OVERVIEW_DIR="${XDG_CONFIG_HOME:-${XDG_CONFIG_HOME:-$HOME/.config}}/quickshell/overview" +QS_TEXTINPUT_LOG_RULE="qt.qpa.wayland.textinput.warning=false" # 1) Prefer Quickshell when installed and configured if command -v qs >/dev/null 2>&1 && [ -d "$QS_OVERVIEW_DIR" ]; then @@ -21,7 +22,7 @@ if command -v qs >/dev/null 2>&1 && [ -d "$QS_OVERVIEW_DIR" ]; then fi # If QS isn't running, try starting it and retry once - qs -c overview >/dev/null 2>&1 & + qs --log-rules "$QS_TEXTINPUT_LOG_RULE" -c overview >/dev/null 2>&1 & sleep 0.6 if qs ipc -c overview call overview toggle >/dev/null 2>&1; then exit 0 |
