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 = , XF86MonBrightnessUp, exec, brightnessctl s +10%
|
||||||
binde = , XF86MonBrightnessDown, 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
|
bind=SUPERALT,n,exec,eww update rightside=true
|
||||||
|
|
||||||
bindm=SUPER,mouse:272,movewindow
|
bindm=SUPER,mouse:272,movewindow
|
||||||
|
|
|
@ -142,6 +142,7 @@ with lib;
|
||||||
esh-autosuggest
|
esh-autosuggest
|
||||||
melpaPackages.org-ai
|
melpaPackages.org-ai
|
||||||
melpaPackages.gptel
|
melpaPackages.gptel
|
||||||
|
pkgs.ispell
|
||||||
pkgs.mu
|
pkgs.mu
|
||||||
pkgs.openjdk
|
pkgs.openjdk
|
||||||
pkgs.languagetool
|
pkgs.languagetool
|
||||||
|
|
|
@ -7,9 +7,9 @@ with lib;
|
||||||
lightly-qt
|
lightly-qt
|
||||||
pinentry
|
pinentry
|
||||||
pinentry-qt
|
pinentry-qt
|
||||||
hunspell
|
|
||||||
caffeine-ng
|
caffeine-ng
|
||||||
hunspellDicts.en_US
|
hunspell
|
||||||
|
hunspellDicts.en_US-large
|
||||||
transmission
|
transmission
|
||||||
openssh
|
openssh
|
||||||
openssl
|
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