11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p ~/.local/bin
|
|
cp ./autobg ~/.local/bin/autobg
|
|
cp ./autobg.timer ~/.config/systemd/user/autobg.timer
|
|
cp ./autobg.service ~/.config/systemd/user/autobg.service
|
|
sed -i -e "s+HOME+$HOME+g" ~/.config/systemd/user/autobg.service
|
|
systemctl --user enable --now autobg.timer
|
|
systemctl --user enable autobg.service
|
|
|