Merge branch 'master' of https://github.com/ssnailed/voidrice into ssnailed-master

This commit is contained in:
Luke Smith 2023-02-06 18:11:39 -05:00
commit 37d26eccd8
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252
2 changed files with 7 additions and 1 deletions

View file

@ -8,7 +8,7 @@ setbg & # set the background with the `setbg` script
#xrdb ${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources & xrdbpid=$! # Uncomment to use Xresources colors/settings on startup
remaps & # run the remaps script, switching caps/esc and more; check it for more info
autostart="mpd xcompmgr dunst unclutter pipewire"
autostart="mpd xcompmgr dunst unclutter pipewire remapd"
for program in $autostart; do
pidof -s "$program" || "$program" &

6
.local/bin/remapd Normal file
View file

@ -0,0 +1,6 @@
#!/bin/sh
while : ; do
dmesg -W -f kern | grep "input:" -q
sleep 1
remaps
done