Update a bunch of configs
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
738f83183f
commit
052fb6bada
24 changed files with 474 additions and 68 deletions
13
install
13
install
|
@ -27,6 +27,7 @@ DIRECTORIES=(
|
|||
"Build"
|
||||
"Downloads"
|
||||
"Projects"
|
||||
"Tasks"
|
||||
"Videos"
|
||||
"Pictures"
|
||||
"Music"
|
||||
|
@ -54,15 +55,16 @@ LINKED_FILES_HOME=(
|
|||
".config/python"
|
||||
".config/redshift"
|
||||
".config/streamlink"
|
||||
".config/task"
|
||||
".config/termite"
|
||||
".config/Trolltech.conf"
|
||||
".config/vim"
|
||||
".config/vue"
|
||||
".config/wget"
|
||||
".config/X11"
|
||||
".config/zathura"
|
||||
".config/zsh"
|
||||
".local/bin"
|
||||
".config/zathura"
|
||||
)
|
||||
|
||||
# Symlinks which will be created
|
||||
|
@ -85,10 +87,10 @@ ADD_GROUPS=(
|
|||
|
||||
# Array of systemd services which should be enabled
|
||||
SYSTEMD_SERVICES=(
|
||||
"bumblebeed"
|
||||
"cronie"
|
||||
"NetworkManager"
|
||||
"org.cups.cupsd"
|
||||
"suspend"
|
||||
)
|
||||
|
||||
#######################################
|
||||
|
@ -148,6 +150,13 @@ do
|
|||
add_to_group "${USER}" "${group}"
|
||||
done
|
||||
|
||||
print_section "Copying systemd services"
|
||||
for file in "${SYSTEM_DIR}/etc/systemd/system/"*
|
||||
do
|
||||
print_log "Copy ${YELLOW}$(basename ${file})${RESET} to ${YELLOW}/etc/systemd/system${RESET}"
|
||||
sudo install -m 644 "${file}" "/etc/systemd/system"
|
||||
done
|
||||
|
||||
print_section "Enabling systemd services"
|
||||
for service in "${SYSTEMD_SERVICES[@]}"
|
||||
do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue