11 lines
325 B
Bash
11 lines
325 B
Bash
|
#!/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
|
||
|
|