feat(scripts): add config

This commit is contained in:
2025-11-08 19:34:01 -05:00
parent a7319f7d7f
commit d9be0f4e18
44 changed files with 2746 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#! /bin/bash
# Script to toggle graphical
defTarget=$(systemctl get-default)
if [[ $defTarget == 'graphical.target' ]]
then
echo 'Changing default target to nongraphical shell'
sudo systemctl set-default multi-user.target
else
echo 'Changing default target to graphical shell'
sudo systemctl set-default graphical.target
fi
echo
echo 'Default target changed to '$(systemctl get-default)
echo 'Please reboot for the change to take effect'