fixes to lots of little things

This commit is contained in:
Chris Cochrun 2023-08-22 10:05:57 -05:00
parent 7ec8d23541
commit c1075fa964
4 changed files with 13 additions and 3 deletions

View file

@ -210,7 +210,7 @@ in
binde = , XF86MonBrightnessUp, exec, brightnessctl s +10%
binde = , XF86MonBrightnessDown, exec, brightnessctl s 10%-
bind=SUPERCTRL,b,exec,eww.sh
bind=SUPERSHIFT,g,exec,bar.sh
bind=SUPERALT,n,exec,eww update rightside=true
bindm=SUPER,mouse:272,movewindow

View file

@ -142,6 +142,7 @@ with lib;
esh-autosuggest
melpaPackages.org-ai
melpaPackages.gptel
pkgs.ispell
pkgs.mu
pkgs.openjdk
pkgs.languagetool

View file

@ -7,9 +7,9 @@ with lib;
lightly-qt
pinentry
pinentry-qt
hunspell
caffeine-ng
hunspellDicts.en_US
hunspell
hunspellDicts.en_US-large
transmission
openssh
openssl

9
scripts/bar.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/sh
wb=$(pgrep waybar)
if [[ "$wb" -gt 1 ]]; then
kill $wb
else
exec waybar &
fi