From 9983897010afdee0407ba68ba90df42878db9a3a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 27 Feb 2024 01:33:36 -0500 Subject: start splitting out some laptop-specific stuff --- laptop/.config/systemd/user/watch-kbd.service | 6 ++++++ laptop/Makefile | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 laptop/.config/systemd/user/watch-kbd.service create mode 100644 laptop/Makefile (limited to 'laptop') diff --git a/laptop/.config/systemd/user/watch-kbd.service b/laptop/.config/systemd/user/watch-kbd.service new file mode 100644 index 0000000..415d8fb --- /dev/null +++ b/laptop/.config/systemd/user/watch-kbd.service @@ -0,0 +1,6 @@ +[Service] +ExecStart=%h/.bin/%H/watch-kbd +Restart=always + +[Install] +WantedBy=default.target diff --git a/laptop/Makefile b/laptop/Makefile new file mode 100644 index 0000000..a16e3bc --- /dev/null +++ b/laptop/Makefile @@ -0,0 +1,9 @@ +include ../Makefile.include + +install: + @systemctl --user enable watch-kbd + @systemctl --user start watch-kbd + +uninstall: + @systemctl --user stop watch-kbd + @systemctl --user disable watch-kbd -- cgit v1.2.3-54-g00ecf