259 lines
9.6 KiB
Bash
Executable File
259 lines
9.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
OMARCHY_BIN_PATH=~/.local/share/omarchy/bin
|
|
|
|
menu() {
|
|
echo -e "$2" | walker --dmenu --theme dmenu_250 -p "$1…" $3
|
|
}
|
|
|
|
terminal() {
|
|
alacritty --class Omarchy -e $1
|
|
}
|
|
|
|
present_terminal() {
|
|
alacritty --class Omarchy -e bash -c "~/.local/share/omarchy/bin/omarchy-show-logo; eval \"$1\"; ~/.local/share/omarchy/bin/omarchy-show-done;"
|
|
}
|
|
|
|
edit_in_nvim() {
|
|
notify-send "Editing config file" "$1"
|
|
alacritty -e nvim "$1"
|
|
}
|
|
|
|
install_and_launch() {
|
|
present_terminal "echo 'Installing $1...'; yay -Sy --noconfirm $2 && gtk-launch $3"
|
|
}
|
|
|
|
install_font() {
|
|
present_terminal "echo 'Installing $1...'; yay -Sy --noconfirm --needed $2 && sleep 2 && ~/.local/share/omarchy/bin/omarchy-font-set '$3'"
|
|
}
|
|
|
|
show_learn_menu() {
|
|
case $(menu "Learn" " Keybindings\n Omarchy\n Hyprland\n Arch\n Neovim\n Bash") in
|
|
*Keybindings*) $OMARCHY_BIN_PATH/omarchy-menu-keybindings ;;
|
|
*Omarchy*) setsid chromium --new-window --app="https://manuals.omamix.org/2/the-omarchy-manual" & ;;
|
|
*Hyprland*) setsid chromium --new-window --app="https://wiki.hypr.land/" & ;;
|
|
*Arch*) setsid chromium --new-window --app="https://wiki.archlinux.org/title/Main_page" & ;;
|
|
*Bash*) setsid chromium --new-window --app="https://devhints.io/bash" & ;;
|
|
*Neovim*) setsid chromium --new-window --app="https://www.lazyvim.org/keymaps" & ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_style_menu() {
|
|
case $(menu "Style" " Theme\n Font\n Background") in
|
|
*Theme*) show_theme_menu ;;
|
|
*Font*) show_font_menu ;;
|
|
*Background*) $OMARCHY_BIN_PATH/omarchy-theme-bg-next ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_theme_menu() {
|
|
theme=$(menu "Theme" "$($OMARCHY_BIN_PATH/omarchy-theme-list)")
|
|
if [[ "$theme" == "CNCLD" || -z "$theme" ]]; then
|
|
show_main_menu
|
|
else
|
|
$OMARCHY_BIN_PATH/omarchy-theme-set "$theme"
|
|
fi
|
|
}
|
|
|
|
show_font_menu() {
|
|
theme=$(menu "Font" "$($OMARCHY_BIN_PATH/omarchy-font-list)" "-w 350")
|
|
if [[ "$theme" == "CNCLD" || -z "$theme" ]]; then
|
|
show_main_menu
|
|
else
|
|
$OMARCHY_BIN_PATH/omarchy-font-set "$theme"
|
|
fi
|
|
}
|
|
|
|
show_capture_menu() {
|
|
case $(menu "Capture" " Screenshot\n Screenrecord\n Color") in
|
|
*Screenshot*) show_screenshot_menu ;;
|
|
*Screenrecord*) show_screenrecord_menu ;;
|
|
*Color*) pkill hyprpicker || hyprpicker -a ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_screenshot_menu() {
|
|
case $(menu "Screenshot" " Region\n Window\n Display") in
|
|
*Region*) $OMARCHY_BIN_PATH/omarchy-cmd-screenshot ;;
|
|
*Window*) $OMARCHY_BIN_PATH/omarchy-cmd-screenshot window ;;
|
|
*Display*) $OMARCHY_BIN_PATH/omarchy-cmd-screenshot output ;;
|
|
*) show_capture_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_screenrecord_menu() {
|
|
case $(menu "Screenrecord" " Region\n Display") in
|
|
*Region*) $OMARCHY_BIN_PATH/omarchy-cmd-screenrecord ;;
|
|
*Display*) $OMARCHY_BIN_PATH/omarchy-cmd-screenrecord output ;;
|
|
*) show_capture_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_toggle_menu() {
|
|
case $(menu "Toggle" " Screensaver\n Nightlight\n Idle Lock\n Top Bar") in
|
|
*Screensaver*) $OMARCHY_BIN_PATH/omarchy-launch-screensaver ;;
|
|
*Nightlight*) $OMARCHY_BIN_PATH/omarchy-toggle-nightlight ;;
|
|
*Idle*) $OMARCHY_BIN_PATH/omarchy-toggle-idle ;;
|
|
*Bar*) pkill -SIGUSR1 waybar ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_setup_menu() {
|
|
local options=" Audio\n Wifi\n Bluetooth\n Power Profile\n Monitors"
|
|
[ -f ~/.config/hypr/bindings.conf ] && options="$options\n Keybindings"
|
|
[ -f ~/.config/hypr/input.conf ] && options="$options\n Input"
|
|
options="$options\n Configs\n Fingerprint\n Fido2"
|
|
|
|
case $(menu "Setup" "$options") in
|
|
*Audio*) alacritty --class=Wiremix -e wiremix ;;
|
|
*Wifi*) alacritty --class=Impala -e impala ;;
|
|
*Bluetooth*) blueberry ;;
|
|
*Power*) show_setup_power_menu ;;
|
|
*Monitors*) edit_in_nvim ~/.config/hypr/monitors.conf ;;
|
|
*Keybindings*) edit_in_nvim ~/.config/hypr/bindings.conf ;;
|
|
*Input*) edit_in_nvim ~/.config/hypr/input.conf ;;
|
|
*Configs*) show_setup_configs_menu ;;
|
|
*Fingerprint*) terminal $OMARCHY_BIN_PATH/omarchy-setup-fingerprint ;;
|
|
*Fido2*) terminal $OMARCHY_BIN_PATH/omarchy-setup-fido2 ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_setup_power_menu() {
|
|
current_profile=$(powerprofilesctl get)
|
|
new_profile=$(menu "Power Profile" "$($OMARCHY_BIN_PATH/omarchy-powerprofiles-list)" "-a '${current_profile}'")
|
|
|
|
if [[ "$new_profile" == "CNCLD" || -z "$new_profile" ]]; then
|
|
show_main_menu
|
|
else
|
|
powerprofilesctl set "$new_profile"
|
|
fi
|
|
}
|
|
|
|
show_setup_configs_menu() {
|
|
case $(menu "Setup" " Hyprland\n Hypridle\n Hyprlock\n Hyprsunset\n Swayosd\n Walker\n Waybar\n XCompose") in
|
|
*Hyprland*) edit_in_nvim ~/.config/hypr/hyprland.conf ;;
|
|
*Hypridle*) edit_in_nvim ~/.config/hypr/hypridle.conf && ~/.local/share/omarchy/bin/omarchy-restart-hypridle ;;
|
|
*Hyprlock*) edit_in_nvim ~/.config/hypr/hyprlock.conf ;;
|
|
*Hyprsunset*) edit_in_nvim ~/.config/hypr/hyprsunset.conf && ~/.local/share/omarchy/bin/omarchy-restart-hyprsunset ;;
|
|
*Swayosd*) edit_in_nvim ~/.config/swayosd/config.toml && ~/.local/share/omarchy/bin/omarchy-restart-swayosd ;;
|
|
*Walker*) edit_in_nvim ~/.config/walker/config.toml && ~/.local/share/omarchy/bin/omarchy-restart-walker ;;
|
|
*Waybar*) edit_in_nvim ~/.config/waybar/config.jsonc && ~/.local/share/omarchy/bin/omarchy-restart-waybar ;;
|
|
*XCompose*) edit_in_nvim ~/.XCompose && ~/.local/share/omarchy/bin/omarchy-restart-xcompose ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_install_menu() {
|
|
case $(menu "Install" " Package\n Web App\n Editor\n Theme\n Background\n Font\n Dropbox\n Steam\n Docker DBs") in
|
|
*Package*) terminal $OMARCHY_BIN_PATH/omarchy-pkg-install ;;
|
|
*Web*) terminal $OMARCHY_BIN_PATH/omarchy-webapp-install ;;
|
|
*Editor*) show_install_editor_menu ;;
|
|
*Theme*) terminal $OMARCHY_BIN_PATH/omarchy-theme-install ;;
|
|
*Background*) nautilus ~/.config/omarchy/current/theme/backgrounds ;;
|
|
*Font*) show_install_font_menu ;;
|
|
*Dropbox*) terminal $OMARCHY_BIN_PATH/omarchy-setup-dropbox ;;
|
|
*Steam*) terminal $OMARCHY_BIN_PATH/omarchy-setup-steam ;;
|
|
*Docker*) terminal $OMARCHY_BIN_PATH/omarchy-setup-docker-dbs ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_install_editor_menu() {
|
|
case $(menu "Install" " VSCode\n Cursor\n Zed") in
|
|
*VSCode*) install_and_launch "VSCode" "visual-studio-code-bin" "code" ;;
|
|
*Cursor*) install_and_launch "Cursor" "cursor-bin" "cursor-cursor" ;;
|
|
*Zed*) install_and_launch "Zed" "zed" "dev.zed.Zed" ;;
|
|
*) show_install_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_install_font_menu() {
|
|
case $(menu "Install" " Meslo LG Mono\n Fira Code\n Victor Code\n Bistream Vera Mono" "-w 350") in
|
|
*Meslo*) install_font "Meslo LG Mono" "ttf-meslo-nerd" "MesloLGL Nerd Font" ;;
|
|
*Fira*) install_font "Fira Code" "ttf-firacode-nerd" "FiraCode Nerd Font" ;;
|
|
*Victor*) install_font "Victor Code" "ttf-victor-mono-nerd" "VictorMono Nerd Font" ;;
|
|
*Bistream*) install_font "Bistream Vera Code" "ttf-bitstream-vera-mono-nerd" "BitstromWera Nerd Font" ;;
|
|
*) show_install_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_remove_menu() {
|
|
case $(menu "Remove" " Package\n Web App\n Theme\n Fingerprint\n Fido2") in
|
|
*Package*) terminal $OMARCHY_BIN_PATH/omarchy-pkg-remove ;;
|
|
*Web*) terminal $OMARCHY_BIN_PATH/omarchy-webapp-remove ;;
|
|
*Theme*) present_terminal $OMARCHY_BIN_PATH/omarchy-theme-remove ;;
|
|
*Fingerprint*) terminal "$OMARCHY_BIN_PATH/omarchy-setup-fingerprint --remove" ;;
|
|
*Fido2*) terminal "$OMARCHY_BIN_PATH/omarchy-setup-fido2 --remove" ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_update_menu() {
|
|
case $(menu "Update" " Omarchy\n Configs\n Themes\n Timezone") in
|
|
*Omarchy*) terminal $OMARCHY_BIN_PATH/omarchy-update ;;
|
|
*Configs*) show_update_configs_menu ;;
|
|
*Themes*) terminal $OMARCHY_BIN_PATH/omarchy-theme-update ;;
|
|
*Timezone*) $OMARCHY_BIN_PATH/omarchy-cmd-tzupdate ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_update_configs_menu() {
|
|
case $(menu "Use default config" " Hyprland\n Hypridle\n Hyprlock\n Hyprsunset\n Plymouth\n Swayosd\n Walker\n Waybar") in
|
|
*Hyprland*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-hyprland ;;
|
|
*Hypridle*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-hypridle ;;
|
|
*Hyprlock*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-hyprlock ;;
|
|
*Hyprsunset*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-hyprsunset ;;
|
|
*Plymouth*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-plymouth ;;
|
|
*Swayosd*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-swayosd ;;
|
|
*Walker*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-walker ;;
|
|
*Waybar*) present_terminal $OMARCHY_BIN_PATH/omarchy-refresh-waybar ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_system_menu() {
|
|
case $(menu "System" " Lock\n Suspend\n Relaunch\n Restart\n Shutdown") in
|
|
*Lock*) hyprlock ;;
|
|
*Suspend*) systemctl suspend ;;
|
|
*Relaunch*) uwsm stop ;;
|
|
*Restart*) systemctl reboot ;;
|
|
*Shutdown*) systemctl poweroff ;;
|
|
*) show_main_menu ;;
|
|
esac
|
|
}
|
|
|
|
show_main_menu() {
|
|
go_to_menu "$(menu "Go" " Apps\n Learn\n Capture\n Toggle\n Style\n Setup\n Install\n Remove\n Update\n About\n System")"
|
|
}
|
|
|
|
go_to_menu() {
|
|
case "${1,,}" in
|
|
*apps*) walker -p "Launch…" ;;
|
|
*learn*) show_learn_menu ;;
|
|
*style*) show_style_menu ;;
|
|
*theme*) show_theme_menu ;;
|
|
*capture*) show_capture_menu ;;
|
|
*screenshot*) show_screenshot_menu ;;
|
|
*screenrecord*) show_screenrecord_menu ;;
|
|
*toggle*) show_toggle_menu ;;
|
|
*setup*) show_setup_menu ;;
|
|
*install*) show_install_menu ;;
|
|
*remove*) show_remove_menu ;;
|
|
*update*) show_update_menu ;;
|
|
*system*) show_system_menu ;;
|
|
*about*) gtk-launch About.desktop ;;
|
|
esac
|
|
}
|
|
|
|
if [[ -n "$1" ]]; then
|
|
go_to_menu "$1"
|
|
else
|
|
show_main_menu
|
|
fi
|