
我有一個 Ubuntu/WIndows 雙啟動系統。我想在工作日將自己鎖在 Windows 之外。我將這個自訂 grub 放在一起以在工作日跳過 grub 選單並保存在 /boot/grub/custom.cfg 中。工作日還可以,但是現在是星期六了,還是直接進入Ubuntu。
# This module creates special variables that return the current date/time
insmod datehook
# Boot "Ubuntu" on weekdays
set default="Ubuntu"
if [ $DAY != SUNDAY -a $DAY != SATURDAY ]; then
set GRUB_TIMEOUT=0
set timeout=0
set GRUB_HIDDEN_TIMEOUT_QUIET=true
fi