mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 12:10:38 +02:00
8 lines
144 B
Bash
8 lines
144 B
Bash
#!/bin/bash
|
|
|
|
wallpaper=$(find ~/Obrazy/tapety/ -type f | wofi --dmenu)
|
|
|
|
if [[ -n $wallpaper ]];then
|
|
hyprctl hyprpaper reload ,$wallpaper
|
|
fi
|