feat: Use nix-shell interpreter
This commit is contained in:
parent
912ae5df82
commit
d44933c182
8 changed files with 129 additions and 107 deletions
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi gnugrep
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -6,124 +8,130 @@
|
||||||
## Applets : Power Menu
|
## Applets : Power Menu
|
||||||
|
|
||||||
# Import Current Theme
|
# Import Current Theme
|
||||||
|
# shellcheck source=./../shared/theme.bash
|
||||||
source "$HOME"/.config/rofi/applets/shared/theme.bash
|
source "$HOME"/.config/rofi/applets/shared/theme.bash
|
||||||
theme="$type/$style"
|
theme="$type/$style"
|
||||||
|
|
||||||
# Theme Elements
|
# Theme Elements
|
||||||
prompt="`hostname`"
|
prompt="$(hostname)"
|
||||||
mesg="Uptime : `uptime -p | sed -e 's/up //g'`"
|
mesg="Uptime : $(uptime -p | sed -e 's/up //g')"
|
||||||
|
|
||||||
if [[ ( "$theme" == *'type-1'* ) || ( "$theme" == *'type-3'* ) || ( "$theme" == *'type-5'* ) ]]; then
|
if [[ ("$theme" == *'type-1'*) || ("$theme" == *'type-3'*) || ("$theme" == *'type-5'*) ]]; then
|
||||||
list_col='1'
|
list_col='1'
|
||||||
list_row='6'
|
list_row='6'
|
||||||
elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then
|
elif [[ ("$theme" == *'type-2'*) || ("$theme" == *'type-4'*) ]]; then
|
||||||
list_col='6'
|
list_col='6'
|
||||||
list_row='1'
|
list_row='1'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2`
|
layout=$(cat "${theme}" | grep 'USE_ICON' | cut -d'=' -f2)
|
||||||
if [[ "$layout" == 'NO' ]]; then
|
if [[ "$layout" == 'NO' ]]; then
|
||||||
option_1=" Lock"
|
option_1=" Lock"
|
||||||
option_2=" Logout"
|
option_2=" Logout"
|
||||||
option_3=" Suspend"
|
option_3=" Suspend"
|
||||||
option_4=" Hibernate"
|
option_4=" Hibernate"
|
||||||
option_5=" Reboot"
|
option_5=" Reboot"
|
||||||
option_6=" Shutdown"
|
option_6=" Shutdown"
|
||||||
yes=' Yes'
|
yes=' Yes'
|
||||||
no=' No'
|
no=' No'
|
||||||
else
|
else
|
||||||
option_1=""
|
option_1=""
|
||||||
option_2=""
|
option_2=""
|
||||||
option_3=""
|
option_3=""
|
||||||
option_4=""
|
option_4=""
|
||||||
option_5=""
|
option_5=""
|
||||||
option_6=""
|
option_6=""
|
||||||
yes=''
|
yes=''
|
||||||
no=''
|
no=''
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Rofi CMD
|
# Rofi CMD
|
||||||
rofi_cmd() {
|
rofi_cmd()
|
||||||
rofi -theme-str "listview {columns: $list_col; lines: $list_row;}" \
|
{
|
||||||
-theme-str 'textbox-prompt-colon {str: "";}' \
|
rofi -theme-str "listview {columns: $list_col; lines: $list_row;}" \
|
||||||
-dmenu \
|
-theme-str 'textbox-prompt-colon {str: "";}' \
|
||||||
-p "$prompt" \
|
-dmenu \
|
||||||
-mesg "$mesg" \
|
-p "$prompt" \
|
||||||
-markup-rows \
|
-mesg "$mesg" \
|
||||||
-theme ${theme}
|
-markup-rows \
|
||||||
|
-theme "${theme}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Pass variables to rofi dmenu
|
# Pass variables to rofi dmenu
|
||||||
run_rofi() {
|
run_rofi()
|
||||||
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5\n$option_6" | rofi_cmd
|
{
|
||||||
|
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n$option_5\n$option_6" | rofi_cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
# Confirmation CMD
|
# Confirmation CMD
|
||||||
confirm_cmd() {
|
confirm_cmd()
|
||||||
rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
|
{
|
||||||
-theme-str 'mainbox {orientation: vertical; children: [ "message", "listview" ];}' \
|
rofi -theme-str 'window {location: center; anchor: center; fullscreen: false; width: 350px;}' \
|
||||||
-theme-str 'listview {columns: 2; lines: 1;}' \
|
-theme-str 'mainbox {orientation: vertical; children: [ "message", "listview" ];}' \
|
||||||
-theme-str 'element-text {horizontal-align: 0.5;}' \
|
-theme-str 'listview {columns: 2; lines: 1;}' \
|
||||||
-theme-str 'textbox {horizontal-align: 0.5;}' \
|
-theme-str 'element-text {horizontal-align: 0.5;}' \
|
||||||
-dmenu \
|
-theme-str 'textbox {horizontal-align: 0.5;}' \
|
||||||
-p 'Confirmation' \
|
-dmenu \
|
||||||
-mesg 'Are you Sure?' \
|
-p 'Confirmation' \
|
||||||
-theme ${theme}
|
-mesg 'Are you Sure?' \
|
||||||
|
-theme "${theme}"
|
||||||
}
|
}
|
||||||
|
|
||||||
# Ask for confirmation
|
# Ask for confirmation
|
||||||
confirm_exit() {
|
confirm_exit()
|
||||||
echo -e "$yes\n$no" | confirm_cmd
|
{
|
||||||
|
echo -e "$yes\n$no" | confirm_cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
# Confirm and execute
|
# Confirm and execute
|
||||||
confirm_run () {
|
confirm_run()
|
||||||
selected="$(confirm_exit)"
|
{
|
||||||
if [[ "$selected" == "$yes" ]]; then
|
selected="$(confirm_exit)"
|
||||||
${1} && ${2} && ${3}
|
if [[ "$selected" == "$yes" ]]; then
|
||||||
else
|
${1} && ${2} && ${3}
|
||||||
exit
|
else
|
||||||
fi
|
exit
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Execute Command
|
# Execute Command
|
||||||
run_cmd() {
|
run_cmd()
|
||||||
if [[ "$1" == '--opt1' ]]; then
|
{
|
||||||
betterlockscreen -l
|
if [[ "$1" == '--opt1' ]]; then
|
||||||
elif [[ "$1" == '--opt2' ]]; then
|
betterlockscreen -l
|
||||||
confirm_run 'kill -9 -1'
|
elif [[ "$1" == '--opt2' ]]; then
|
||||||
elif [[ "$1" == '--opt3' ]]; then
|
confirm_run 'kill -9 -1'
|
||||||
confirm_run 'mpc -q pause' 'amixer set Master mute' 'systemctl suspend'
|
elif [[ "$1" == '--opt3' ]]; then
|
||||||
elif [[ "$1" == '--opt4' ]]; then
|
confirm_run 'mpc -q pause' 'amixer set Master mute' 'systemctl suspend'
|
||||||
confirm_run 'systemctl hibernate'
|
elif [[ "$1" == '--opt4' ]]; then
|
||||||
elif [[ "$1" == '--opt5' ]]; then
|
confirm_run 'systemctl hibernate'
|
||||||
confirm_run 'systemctl reboot'
|
elif [[ "$1" == '--opt5' ]]; then
|
||||||
elif [[ "$1" == '--opt6' ]]; then
|
confirm_run 'systemctl reboot'
|
||||||
confirm_run 'systemctl poweroff'
|
elif [[ "$1" == '--opt6' ]]; then
|
||||||
fi
|
confirm_run 'systemctl poweroff'
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Actions
|
# Actions
|
||||||
chosen="$(run_rofi)"
|
chosen="$(run_rofi)"
|
||||||
case ${chosen} in
|
case ${chosen} in
|
||||||
$option_1)
|
"$option_1")
|
||||||
run_cmd --opt1
|
run_cmd --opt1
|
||||||
;;
|
;;
|
||||||
$option_2)
|
"$option_2")
|
||||||
run_cmd --opt2
|
run_cmd --opt2
|
||||||
;;
|
;;
|
||||||
$option_3)
|
"$option_3")
|
||||||
run_cmd --opt3
|
run_cmd --opt3
|
||||||
;;
|
;;
|
||||||
$option_4)
|
"$option_4")
|
||||||
run_cmd --opt4
|
run_cmd --opt4
|
||||||
;;
|
;;
|
||||||
$option_5)
|
"$option_5")
|
||||||
run_cmd --opt5
|
run_cmd --opt5
|
||||||
;;
|
;;
|
||||||
$option_6)
|
"$option_6")
|
||||||
run_cmd --opt6
|
run_cmd --opt6
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -16,5 +18,5 @@ theme='style-1'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -15,5 +17,5 @@ theme='style-10'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -15,5 +17,5 @@ theme='style-1'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -14,5 +16,5 @@ theme='style-1'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -15,5 +17,5 @@ theme='style-1'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env nix-shell
|
||||||
|
#! nix-shell -i bash -p rofi
|
||||||
|
# shellcheck shell=bash
|
||||||
|
|
||||||
## Author : Aditya Shakya (adi1090x)
|
## Author : Aditya Shakya (adi1090x)
|
||||||
## Github : @adi1090x
|
## Github : @adi1090x
|
||||||
|
@ -15,5 +17,5 @@ theme='style-1'
|
||||||
|
|
||||||
## Run
|
## Run
|
||||||
rofi \
|
rofi \
|
||||||
-show drun \
|
-show drun \
|
||||||
-theme ${dir}/${theme}.rasi
|
-theme "${dir}"/${theme}.rasi
|
||||||
|
|
Loading…
Reference in a new issue