Inital Comit Upload Config Files

This commit is contained in:
2026-03-17 00:30:35 +01:00
commit a07d19b8a8
36 changed files with 1796 additions and 0 deletions

27
scripts/settingsmenu.sh Executable file
View File

@@ -0,0 +1,27 @@
#!/bin/bash
choice=$(printf "󰕾 Audio Control\n Bluetooth\n󰖩 Network\n󰔎 Appearance\n Terminal\n Files\n🖥 Display Settings" | wofi --dmenu --prompt "Settings")
case "$choice" in
"󰕾 Audio Control")
pavucontrol
;;
" Bluetooth")
blueman-manager
;;
"󰖩 Network")
nm-connection-editor
;;
"󰔎 Appearance")
nwg-look
;;
" Terminal")
kitty
;;
" Files")
nautilus
;;
"🖥 Display Settings")
kitty -e bash -lc 'nano ~/.config/hypr/hyprland.conf'
;;
esacr