This commit is contained in:
dataprolet 2024-05-27 13:01:15 +00:00
parent 904fee7297
commit aecfb9bd93
1 changed files with 5 additions and 5 deletions

View File

@ -1,20 +1,20 @@
#/bin/bash
# Create systemd user directory
mkdir -p "~/.config/systemd/user"
mkdir -p ~/.config/systemd/user
# Copy unit files
cp theme-switcher.service "~/.config/systemd/user"
cp theme-switcher.timer "~/.config/systemd/user"
cp theme-switcher.service ~/.config/systemd/user
cp theme-switcher.timer ~/.config/systemd/user
# Add username to service file
sed -i "s/username/$(whoami)/g" ~/.config/systemd/user/theme-switcher.service
# Make directory for scripts
mkdir -p "~/.theme-switcher"
mkdir -p ~/.theme-switcher
# Copy script file
cp *.sh "~/.theme-switcher"
cp *.sh ~/.theme-switcher
# Enable and start timer
systemctl --user enable theme-switcher.timer