first commit

This commit is contained in:
2026-03-30 14:53:09 -06:00
commit fbec1a6ade
81 changed files with 4479 additions and 0 deletions

11
move_all_wkspce.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
for ws in 1 2; do
hyprctl dispatch workspace "$ws"
sleep 0.1 # espera breve para el cambio de workspace
while hyprctl activewindow | grep -q 'class'; do
hyprctl dispatch killactive
sleep 0.1
done
done