mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 12:10:38 +02:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user