8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if hyprctl activewindow | grep -q "kitty"; then
|
|
hyprctl dispatch movetoworkspacesilent special:kitty
|
|
else
|
|
hyprctl dispatch killactive
|
|
fi
|