shell-host/misc/ui

35 lines
993 B
Text
Raw Normal View History

2025-01-08 09:15:26 -08:00
#!/bin/bash
gui () {
2025-01-08 09:15:26 -08:00
echo switching to graphical display
sudo systemctl isolate graphical.target
2025-01-08 09:15:26 -08:00
echo starting display manager
sudo systemctl start lightdm
2025-01-08 09:15:26 -08:00
echo starting remote desktop server
sudo systemctl start nxserver
}
tui () {
2025-01-08 09:15:26 -08:00
echo switching to text only command line mode
echo stopping display manager
sudo systemctl stop lightdm
2025-01-08 09:15:26 -08:00
echo stopping graphical display
sudo systemctl isolate multi-user.target
sleep 3
sudo chvt ${VTTY:-2}
2025-01-08 09:15:26 -08:00
echo stopping remote desktop server
sudo systemctl stop nxserver
}
2025-01-08 09:15:26 -08:00
tui_default () {
echo curret default display target $(systemctl get-default)
echo setting boot default to command line only
sudo systemctl set-default multi-user.target
2025-01-08 09:15:26 -08:00
echo new default display target $(systemctl get-default)
}
2025-01-08 09:15:26 -08:00
gui_default () {
echo curret default display target $(systemctl get-default)
echo setting boot default to graphical
sudo systemctl set-default graphical.target
2025-01-08 09:15:26 -08:00
echo new default display target $(systemctl get-default)
}