mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-04 12:39:58 +00:00
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
if [ "$1" == "root" ]; then
|
|
echo "Do not run this for root."
|
|
exit 0
|
|
fi
|
|
|
|
systemctl enable --now hhd@$(systemd-escape $1).service
|
|
systemctl disable --now hhd@root.service
|