fixes to lots of little things
This commit is contained in:
parent
7ec8d23541
commit
c1075fa964
|
@ -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
|
||||
|
|
|
@ -142,6 +142,7 @@ with lib;
|
|||
esh-autosuggest
|
||||
melpaPackages.org-ai
|
||||
melpaPackages.gptel
|
||||
pkgs.ispell
|
||||
pkgs.mu
|
||||
pkgs.openjdk
|
||||
pkgs.languagetool
|
||||
|
|
|
@ -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
9
scripts/bar.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
wb=$(pgrep waybar)
|
||||
|
||||
if [[ "$wb" -gt 1 ]]; then
|
||||
kill $wb
|
||||
else
|
||||
exec waybar &
|
||||
fi
|
Loading…
Reference in a new issue