aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-16 21:41:58 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-16 21:41:58 +0530
commit5054d0060c0226509d40e3429a573b7e912a72a8 (patch)
tree48e4c2c90dcc5f0305cf59c99545222bc9aed84f
parent10b2fc13cf342f2276d4107d70d010e8f7ef7d8a (diff)
downloadshotkey-5054d0060c0226509d40e3429a573b7e912a72a8.tar.gz
shotkey-5054d0060c0226509d40e3429a573b7e912a72a8.zip
Docs
Diffstat (limited to '')
-rw-r--r--README.md14
-rw-r--r--TODO.md3
-rw-r--r--config.h6
3 files changed, 20 insertions, 3 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8313e66
--- /dev/null
+++ b/README.md
@@ -0,0 +1,14 @@
+# 😈 Daemonic Keys
+X-server Hot key daemon inspired by the suckless philosophy.
+
+## Installation
+
+Clone the repo and run
+
+```
+sudo make install
+```
+
+## Configuring
+
+
diff --git a/TODO.md b/TODO.md
index 4fb2d18..507fb60 100644
--- a/TODO.md
+++ b/TODO.md
@@ -1,5 +1,8 @@
# TODO
+ - [ ] Some magic helpers for clean config
- [ ] Add modes
+ - [ ] KeyPress and KeyRelease options
+ - [ ] Document stuff
- [ ] Clean up build system
- [ ] Fix installation
- [ ] Create man page
diff --git a/config.h b/config.h
index 65e0766..1989e9b 100644
--- a/config.h
+++ b/config.h
@@ -1,10 +1,10 @@
// Shell
static char shell[] = "sh";
-#define MOD Mod1Mask|ShiftMask
+#define MOD Mod1Mask
static Key keys[] = {
- { MOD, XK_y, "notify-send hello" },
- { MOD, XK_z, "~/scripts/notify.sh wow" },
+ { MOD|ShiftMask, XK_y, "notify-send hello" },
+ { MOD|ShiftMask, XK_z, "~/scripts/notify.sh wow" },
};