This commit is contained in:
2025-09-18 11:35:56 +02:00
commit 2203d6075f
45 changed files with 935 additions and 0 deletions

13
shell/run_kitty.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
# This is a script to always have only one instance of kitty running
# You can run another one if you wish if you use the menu manager
# Use tmux or the
if hyprctl clients | grep -q 'class: kitty'; then
# Focus existing kitty
hyprctl dispatch focuswindow class:kitty
else
# No kitty window found, launch kitty
kitty &
fi