diff options
author | Egor Tensin <egor@tensin.name> | 2025-08-21 17:10:27 +0200 |
---|---|---|
committer | Egor Tensin <egor@tensin.name> | 2025-08-21 17:10:27 +0200 |
commit | ee33f8d172930f506eb423f16720879acd0e4b5d (patch) | |
tree | 6520995491357b634f89f160c7c75ae94bd5213c /reboot-into-windows | |
download | grub-reboot-into-windows-ee33f8d172930f506eb423f16720879acd0e4b5d.tar.gz grub-reboot-into-windows-ee33f8d172930f506eb423f16720879acd0e4b5d.zip |
aur: 0.1-1
Diffstat (limited to 'reboot-into-windows')
-rwxr-xr-x | reboot-into-windows | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/reboot-into-windows b/reboot-into-windows new file mode 100755 index 0000000..a6584b9 --- /dev/null +++ b/reboot-into-windows @@ -0,0 +1,43 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail +shopt -s inherit_errexit lastpipe + +readonly cfg_path=/boot/grub/grub.cfg + +get_windows_menu_entry() { + local windows_entries + windows_entries="$( awk -F\' '/menuentry / {print $2}' "$cfg_path" | grep -Fi Windows )" + + local numof_entries + numof_entries="$( echo "$windows_entries" | wc -l )" + + if [ "$numof_entries" -ne 1 ]; then + echo "Don't know which one of the following entries to select:" >&2 + echo "$windows_entries" >&2 + return 1 + fi + + echo "$windows_entries" +} + +main() { + local entry + entry="$( get_windows_menu_entry )" + + # grub-reboot returns 0 even if something like a permission error happens. + # It does print something in that case though, and nothing after a + # successful termination. + local output + output="$( grub-reboot "$entry" )" + + if [ -n "$output" ]; then + echo "grub-reboot probably exited with an error:" >&2 + echo "$output" >&2 + return 1 + fi + + reboot +} + +main |