This commit is contained in:
Hannes
2026-07-01 16:40:44 +02:00
parent df75a3092a
commit 421b4ca97e
2 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ hl.bind("SUPER+s", hl.dsp.exec_cmd("wtype \"ß\""))
hl.bind("SUPER+SHIFT+e", hl.dsp.exec_cmd("wtype \"\""))
-- Opening coder
hl.bind("SUPER+SHIFT+C", hl.dsp.exec_cmd("code"))
hl.bind("SUPER+SHIFT+C", hl.dsp.exec_cmd("code --password-store=gnome-libsecret"))
hl.bind("SUPER+SHIFT+V", hl.dsp.exec_cmd("vscodium"))
-- device specifics
+10 -4
View File
@@ -103,11 +103,17 @@ while true; do
done
for i in 4 3 2 1; do
echo "hyprctl dispatch \"hl.dsp.focus({workspace = \"$i\"})\""
hyprctl dispatch "hl.dsp.focus({workspace = \"$i\"})"
echo "hyprctl dispatch workspace \"$i\""
hyprctl dispatch workspace "$i"
if [ "$i" -eq 3 ]; then
sleep 0.5
echo "R"
wtype "R"
sleep 0.5
fi
done
# hyprctl dispatch workspace 4
# hyprctl dispatch workspace 3
# hyprctl dispatch workspace 2
# hyprctl dispatch workspace 1
tmux new-session -d -s qs 'sleep 4 && quickshell'