From e07a0d98edfc3800cc86efb7bc9e962b517d45ee Mon Sep 17 00:00:00 2001 From: q3aql Date: Sun, 16 Aug 2020 18:36:00 +0200 Subject: [PATCH] Added Makefile --- linux/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 linux/Makefile diff --git a/linux/Makefile b/linux/Makefile new file mode 100644 index 0000000..b711bc7 --- /dev/null +++ b/linux/Makefile @@ -0,0 +1,13 @@ +############################################ +# Installing ansi-60-keyboard combinations # +############################################ + +install: + mkdir -p ~/.config/autokey/data/ + cp -rfv ansi-60-keyboard ~/.config/autokey/data/ + autokey & + +uninstall: + rm -rfv ~/.config/autokey/data/ + autokey & +