#!/usr/bin/env bash ## Author : Aditya Shakya (adi1090x) ## Github : @adi1090x # ## wofi : Power Menu # ## Available Styles # ## style-1 style-2 style-3 style-4 style-5 # Current Theme dir="~/.config/waybar/scripts/power-menu/" theme='style-1' # CMDs uptime="`uptime -p | sed -e 's/up //g'`" host=`hostname` # Options shutdown=' Shutdown' reboot=' Reboot' lock=' Lock' suspend=' Suspend' logout=' Logout' yes=' Yes' no=' No' # wofi CMD wofi_cmd() { wofi -dmenu \ -p "$host" \ -mesg "Uptime: $uptime" \ -theme ${dir}/${theme}.rasi } # Confirmation CMD confirm_cmd() { wofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 250px;}' \ -theme-str 'mainbox {children: [ "message", "listview" ];}' \ -theme-str 'listview {columns: 2; lines: 1;}' \ -theme-str 'element-text {horizontal-align: 0.5;}' \ -theme-str 'textbox {horizontal-align: 0.5;}' \ -dmenu \ -p 'Confirmation' \ -mesg 'Are you Sure?' \ -theme ${dir}/${theme}.rasi } # Ask for confirmation confirm_exit() { echo -e "$yes\n$no" | confirm_cmd } # Pass variables to wofi dmenu run_wofi() { echo -e "$lock\n$suspend\n$logout\n$reboot\n$shutdown" | wofi_cmd } # Execute Command run_cmd() { selected="$(confirm_exit)" if [[ "$selected" == "$yes" ]]; then if [[ $1 == '--shutdown' ]]; then doas poweroff elif [[ $1 == '--reboot' ]]; then doas reboot elif [[ $1 == '--suspend' ]]; then mpc -q pause amixer set Master mute systemctl suspend elif [[ $1 == '--logout' ]]; then hyprctl dispatch exit 1 fi else exit 0 fi } # Actions chosen="$(run_wofi)" case ${chosen} in $shutdown) run_cmd --shutdown ;; $reboot) run_cmd --reboot ;; $lock) if [[ -x '/usr/bin/betterlockscreen' ]]; then betterlockscreen -l elif [[ -x '/usr/bin/i3lock' ]]; then i3lock fi ;; $suspend) run_cmd --suspend ;; $logout) run_cmd --logout ;; esac