summaryrefslogtreecommitdiff
path: root/fish/.local/bin/sysctls.sh
blob: ab72c134186f027e2d0f577738af79246e2e7c27 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/bash

if [[ "$1" == "poweroff" ]]; then
    doas poweroff
elif [[ "$1" == "reboot" ]]; then
    doas reboot
fi