shell-host/misc/ui
David Kebler f42ff4420d updated firewall functions/alias
updated ui functions
2024-04-17 12:10:02 -07:00

15 lines
257 B
Text

gui () {
sudo systemctl isolate graphical.target
sudo systemctl start lightdm
sudo systemctl start nxserver
}
tui () {
sudo systemctl stop lightdm
sudo systemctl stop nxserver
sudo systemctl isolate multi-user.target
sleep 3
sudo chvt 2
}