1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

powermenu: Add a 'Reboot to Windows' option

This commit is contained in:
Joe Groocock 2016-04-04 04:04:20 +01:00
parent e99e0e91ed
commit 5c986d3203

View File

@ -1,13 +1,17 @@
#!/bin/bash
option=$(echo " lock| logout| sleep| shutdown| restart" | rofi -sep "|" -dmenu -i -p "" -auto-select -hide-scrollbar -monitor 0 -width 8 -location 3 | xargs)
option=$(echo " lock| logout| sleep| shutdown| restart| windows" | rofi -sep "|" -dmenu -i -p "" -auto-select -hide-scrollbar -monitor 0 -width 8 -location 3 | xargs)
case $option in
lock) ./lock.sh;;
logout) i3-msg exit;;
restart) reboot;;
sleep) systemctl suspend;;
shutdown) poweroff;;
restart) reboot;;
windows)
windows=`efibootmgr | grep -Po -m1 'Boot\K(\d{4}).*Windows.*' | head -c4`
`sudo efibootmgr -n $windows`
reboot;;
esac
exit 0