27 lines
620 B
Bash
Executable File
27 lines
620 B
Bash
Executable File
#!/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 |