diff options
-rwxr-xr-x | install.sh | 6 | ||||
-rw-r--r-- | twmn/.config/systemd/user/twmnd.service | 12 |
2 files changed, 15 insertions, 3 deletions
@@ -71,11 +71,11 @@ #chsh -s $(which zsh) -## The service doesn't work on my system... -# tpac twmn -#./stow-services services/twmnd.service +# pikaur -S twmn-git #stow twmnd +#systemctl --user enable twmnd.service #sed -i s/absolute_position=1920x25/absolute_position=3840x25/g ~/.config/twmn/twmn.conf +#systemctl --user start twmnd.service #sudo pacman -S python-neovim python-twisted diff --git a/twmn/.config/systemd/user/twmnd.service b/twmn/.config/systemd/user/twmnd.service new file mode 100644 index 0000000..355d8ec --- /dev/null +++ b/twmn/.config/systemd/user/twmnd.service @@ -0,0 +1,12 @@ +[Unit] +Description=twmn server +After=graphical.target + +[Service] +Type=simple +StandardOutput=null +Restart=on-failure +ExecStart=/usr/bin/twmnd + +[Install] +WantedBy=default.target |