diff options
| author | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com> | 2023-07-25 23:50:32 +0200 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@gmx.com> | 2023-07-25 23:50:32 +0200 |
| commit | 1b72a07b4459ebdac1399e919bccc8ae215b916d (patch) | |
| tree | 1c9b3b52fa6138a1b4efbb90f8d1307eb595ec85 /rofi/applets/bin/powermenu.sh | |
| parent | c57e8ab185623510e527400a34d729b313daffc4 (diff) | |
feat(polybar): switch to 24h date
Diffstat (limited to 'rofi/applets/bin/powermenu.sh')
| -rwxr-xr-x | rofi/applets/bin/powermenu.sh | 129 |
1 files changed, 0 insertions, 129 deletions
diff --git a/rofi/applets/bin/powermenu.sh b/rofi/applets/bin/powermenu.sh deleted file mode 100755 index 8ed9106..0000000 --- a/rofi/applets/bin/powermenu.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/usr/bin/env bash - -## Author : Aditya Shakya (adi1090x) -## Github : @adi1090x -# -## Applets : Power Menu - -# Import Current Theme -source "$HOME"/.config/rofi/applets/shared/theme.bash -theme="$type/$style" - -# Theme Elements -prompt="`hostname`" -mesg="Uptime : `uptime -p | sed -e 's/up //g'`" - -if [[ ( "$theme" == *'type-1'* ) || ( "$theme" == *'type-3'* ) || ( "$theme" == *'type-5'* ) ]]; then - list_col='1' - list_row='6' -elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then - list_col='6' - list_row='1' -fi - -# Options -layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2` -if [[ "$layout" == 'NO' ]]; then - option_1=" Lock" - option_2=" Logout" - option_3=" Suspend" - option_4=" Hibernate" - option_5=" Reboot" - option_6=" Shutdown" - yes=' Yes' - no=' No' -else - option_1="" - option_2="" - option_3="" - option_4="" - option_5="" - option_6="" - yes='' - no='' -fi - -# Rofi CMD -rofi_cmd() { - rofi -theme-str "listview {columns: $list_col; lines: $list_row;}" \ - -theme-str 'textbox-prompt-colon {str: "";}' \ - -dmenu \ - -p "$prompt" \ - -mesg "$mesg" \ - -markup-rows \ - -theme ${theme} -} - -# Pass variables to rofi dmenu -run_rofi() { - echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5\n$option_6" | rofi_cmd -} - -# Confirmation CMD -confirm_cmd() { - rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \ - -theme-str 'mainbox {orientation: vertical; 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 ${theme} -} - -# Ask for confirmation -confirm_exit() { - echo -e "$yes\n$no" | confirm_cmd -} - -# Confirm and execute -confirm_run () { - selected="$(confirm_exit)" - if [[ "$selected" == "$yes" ]]; then - ${1} && ${2} && ${3} - else - exit - fi -} - -# Execute Command -run_cmd() { - if [[ "$1" == '--opt1' ]]; then - betterlockscreen -l - elif [[ "$1" == '--opt2' ]]; then - confirm_run 'kill -9 -1' - elif [[ "$1" == '--opt3' ]]; then - confirm_run 'mpc -q pause' 'amixer set Master mute' 'systemctl suspend' - elif [[ "$1" == '--opt4' ]]; then - confirm_run 'systemctl hibernate' - elif [[ "$1" == '--opt5' ]]; then - confirm_run 'systemctl reboot' - elif [[ "$1" == '--opt6' ]]; then - confirm_run 'systemctl poweroff' - fi -} - -# Actions -chosen="$(run_rofi)" -case ${chosen} in - $option_1) - run_cmd --opt1 - ;; - $option_2) - run_cmd --opt2 - ;; - $option_3) - run_cmd --opt3 - ;; - $option_4) - run_cmd --opt4 - ;; - $option_5) - run_cmd --opt5 - ;; - $option_6) - run_cmd --opt6 - ;; -esac - |
