readme update

main
Shinyzenith 2 years ago
parent f58f07c5be
commit 1eca3b18e0
No known key found for this signature in database
GPG Key ID: 6DD485917B553B7B

@ -0,0 +1,9 @@
# swhkd
Simple Wayland HotKey Daemon
This project is still very new and I'm making new decisions everyday as to where I should drive this project.
I'm using libevdev which technically makes swhkd display protocol indepdent, but we'll need to put that to the test before claiming anything.
Currently I have only been able to achieve the grabbing of input evdev, I don't know how I will process chains of keybinds, but we'll get to that soon.

@ -27,7 +27,6 @@ class SWHKD:
await self.log_util.log_info('Gracefully quitting.')
sys.exit(0)
async def run_swhkd(self):
groups = [g.gr_name for g in grp.getgrall() if self.user in g.gr_mem]
gid = pwd.getpwnam(self.user).pw_gid
@ -36,8 +35,6 @@ class SWHKD:
if group.lower() == "input":
await self.log_util.log_warn("User is in input group, proceeding.")
break;
await self.input_util.get_keyboard_devices()
asyncio.run(SWHKD().run_swhkd())

Loading…
Cancel
Save