Update .config/btop/btop.conf

Update .config/hypr/hyprland/binds/theme.conf
Update .config/hypr/hyprland/binds/waybar.conf
Update .config/hypr/hyprland/decoration.conf
Update .config/hypr/hyprland/exec.conf
Update .config/hypr/hyprpaper.conf
Update .config/mako/config
Update .config/nvim/lazy-lock.json
Update .config/waybar/colors.css
Update .config/wofi/colors
Update .local/bin/change_colors.sh
Update .local/bin/change_wallpaper.sh
This commit is contained in:
2025-05-18 21:54:32 +02:00
parent 62332b0404
commit 05f25585aa
12 changed files with 57 additions and 33 deletions

View File

@@ -18,8 +18,11 @@ gray[foreground]="rgba(169, 169, 169, 0.30)"
gray[font-color]="#A9A9A9"
gray[wallpaper]="~/Obrazy/tapety/szary.jpg"
choosen_color=$1
if [[ -z $choosen_color ]]; then
choosen_color=$(echo -e "blue\nred\ngray\n" | wofi --show dmenu --prompt "Choose your theme")
fi
choosen_color=$(echo -e "blue\nred\ngray\n" | wofi --show dmenu --prompt "Choose your theme")
echo "You choose: $(choosen_color)"
if [[ $choosen_color == "blue" ]]; then

View File

@@ -1,6 +1,17 @@
#!/bin/bash
wallpaper=$(find ~/Obrazy/tapety/ -type f | wofi --dmenu)
case $1 in
"sfw")
wallpaper=$(find ~/Obrazy/tapety/sfw/ -type f | wofi --dmenu)
;;
"nsfw")
wallpaper=$(find ~/Obrazy/tapety/nsfw/ -type f | wofi --dmenu)
;;
*)
echo "Please choose nsfw or sfw"
exit 1
;;
esac
if [[ -n $wallpaper ]];then
hyprctl hyprpaper reload ,$wallpaper