Changes rofi shutdown script
This commit is contained in:
parent
db783f2165
commit
a3902ac559
1 changed files with 21 additions and 3 deletions
|
@ -1,13 +1,31 @@
|
||||||
#!/usr/bin/sh
|
#!/usr/bin/sh
|
||||||
|
if type -p rofi 2> /dev/null; then
|
||||||
|
selectcommand="rofi -dmenu -i -theme themes/five.rasi"
|
||||||
|
shutdown=""
|
||||||
|
reboot=""
|
||||||
|
lock=""
|
||||||
|
suspend=""
|
||||||
|
logout=""
|
||||||
|
else
|
||||||
|
selectcommand="dmenu -i -p 'Option'"
|
||||||
|
shutdown="Shutdown"
|
||||||
|
reboot="Reboot"
|
||||||
|
lock="Lock"
|
||||||
|
suspend="Suspend"
|
||||||
|
logout="Logout"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
selection=$( \
|
selection=$( \
|
||||||
echo -e "Lock\nLogout\nSuspend\nHibernate\nReboot\nShutdown" |\
|
#echo -e "$shutdown\n$reboot\n$lock\n$suspend\n$logout" | $selectcommand
|
||||||
rofi -dmenu -i -p 'Option');
|
echo -e "$shutdown\n$reboot\n$lock\n$suspend" | $selectcommand
|
||||||
|
);
|
||||||
echo $selection;
|
echo $selection;
|
||||||
|
|
||||||
sleep .2
|
sleep .2
|
||||||
|
|
||||||
case $selection in
|
case $selection in
|
||||||
Lock)
|
)
|
||||||
i3exit lock
|
i3exit lock
|
||||||
;;
|
;;
|
||||||
Logout)
|
Logout)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue