clone of my dotfiles.ssp.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

add kanata install

sspaeti 25d3f605 57b2827c

+22
+10
Makefile
··· 48 48 # Remove only Linux symlinks 49 49 clean-linux: 50 50 stow -D $(LINUX) 51 + 52 + install-kanata: 53 + sudo cp systemd/.config/systemd/system/kanata.service /etc/systemd/system/ 54 + sudo systemctl daemon-reload 55 + sudo systemctl enable kanata.service 56 + 57 + uninstall-kanata: 58 + sudo systemctl stop kanata.service 59 + sudo systemctl disable kanata.service 60 + sudo rm /etc/systemd/system/kanata.service
+12
systemd/.config/systemd/system/kanata.service
··· 1 + [Unit] 2 + Description=Kanata Service 3 + Requires=local-fs.target 4 + After=local-fs.target 5 + 6 + [Service] 7 + ExecStartPre=/usr/bin/modprobe uinput 8 + ExecStart=/usr/bin/kanata -c /home/sspaeti/.config/kanata/kanata.kbd 9 + Restart=no 10 + 11 + [Install] 12 + WantedBy=sysinit.target