new work display setup

This commit is contained in:
2025-03-06 13:47:29 +01:00
parent 8d2f51b64a
commit 7f1d9640b6
9 changed files with 52 additions and 29 deletions

View File

@@ -101,7 +101,7 @@ function install_gtk {
function install_docker {
sudo systemctl enable docker
sudo usermod -aG docker $USER
sudo usermod -aG docker "$USER"
}
@@ -169,6 +169,7 @@ function install_config {
mkdir -p ~/Pictures/Screenshots
setDateTimeConfig
setup_groups mastermindzh
}
# Installs the dependencies on Arch Linux
@@ -197,6 +198,12 @@ function setup_pass {
pass init info@rickvanlieshout.com
}
# set up groups for specific user
function setup_groups {
local user=${1:-mastermindzh}
sudo usermod -a -G video "$user"
}
# =======================================
# User output functions
# =======================================