New folder structure

This commit is contained in:
2023-04-03 17:47:42 +02:00
commit a2bdf977d9
42 changed files with 2055 additions and 0 deletions

8
System/confirmKilli3.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
confirm="$(rofi -no-config -no-lazy-grab -sep "|" -dmenu -i -p '¿Cerrar ventana?' -width 12 -line-padding 3 -lines 3 -theme /home/danih/Scripts/Temas/confirm_kill.rasi <<< "No|Si")"
case "$confirm" in
Si)
echo "Si confirmado"
i3-msg kill
;;
esac