This commit is contained in:
Stephan Raabe 2024-05-23 08:45:27 +02:00
parent 477d486818
commit 478a02e483
3 changed files with 17 additions and 0 deletions

View File

@ -9,6 +9,7 @@ https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9
- Screen shading possible with hyprshade. SUPER+SHIFT+S to toggle hyprshade. The shader can be defined with the shader module in waybar or in ~/dotfiles/.settings/hyprshade.sh
For auto-activation at a dedicated time please set the filter to off and follow the instructions here https://github.com/loqusion/hyprshade
- Nautilus defined as the new default file manager. Thunar is still available.
- Waybar can be toggles with SUPER+CTRL+B
Version 2.9
https://gitlab.com/stephan-raabe/dotfiles/-/releases/2.9

View File

@ -38,6 +38,7 @@ bind = $mainMod CTRL, W, exec, ~/dotfiles/hypr/scripts/wallpaper.sh select
bind = $mainMod CTRL, RETURN, exec, rofi -show drun -replace -i
bind = $mainMod CTRL, H, exec, ~/dotfiles/hypr/scripts/keybindings.sh
bind = $mainMod SHIFT, B, exec, ~/dotfiles/waybar/launch.sh
bind = $mainMod CTRL, B, exec, ~/dotfiles/waybar/toggle.sh
bind = $mainMod SHIFT, R, exec, ~/dotfiles/hypr/scripts/loadconfig.sh
bind = $mainMod CTRL, F, exec, ~/dotfiles/scripts/filemanager.sh
bind = $mainMod CTRL, C, exec, ~/dotfiles/scripts/cliphist.sh

15
waybar/toggle.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
# _____ _ __ __ _
# |_ _|__ __ _ __ _| | ___ \ \ / /_ _ _ _| |__ __ _ _ __
# | |/ _ \ / _` |/ _` | |/ _ \ \ \ /\ / / _` | | | | '_ \ / _` | '__|
# | | (_) | (_| | (_| | | __/ \ V V / (_| | |_| | |_) | (_| | |
# |_|\___/ \__, |\__, |_|\___| \_/\_/ \__,_|\__, |_.__/ \__,_|_|
# |___/ |___/ |___/
#
if [ -f ~/.cache/waybar-disabled ] ;then
rm ~/.cache/waybar-disabled
else
touch ~/.cache/waybar-disabled
fi
~/dotfiles/waybar/launch.sh &