@variety4me@lemmy.zip to Unixporn@lemmy.mlEnglish • 13 days ago[niri] still scrollinglemmy.mlimagemessage-square20fedilinkarrow-up180arrow-down10file-text
arrow-up180arrow-down1image[niri] still scrollinglemmy.ml@variety4me@lemmy.zip to Unixporn@lemmy.mlEnglish • 13 days agomessage-square20fedilinkfile-text
minus-squareobnomuslinkfedilinkEnglish1•edit-212 days agoOp I need help like I’m using swww to set a random wallpaper at startup from my wallpaper folder, now I can’t understand how do I set the same wallpaper in overview.
minus-square@variety4me@lemmy.zipOPlinkfedilinkEnglish1•12 days agoI used 2 wallpaper applications to achieve this, swww and swaybg For Niri, set layet rule layer-rule { match namespace="^wallpaper$" place-within-backdrop true } Spawn at startup with niri swaybg -i .local/share/backgrounds/paint-blur.jpg & Independent of niri use swww to set wallpaper swww img .local/share/backgrounds/paint.jpg Hope this helps
minus-squareobnomuslinkfedilinkEnglish1•11 days agoI used this but I’m choosing a random wallpaper from my wallpaper folder. Btw thanks for this.
minus-square@variety4me@lemmy.zipOPlinkfedilinkEnglish1•12 days agoyou could pick a random file from folader in a bash script… something like this: RANDOM_FILE=$(find "$SOURCE_FOLDER" -type f | shuf -n 1)
minus-squareobnomuslinkfedilinkEnglish1•11 days agoI’m doing it but, Idk how do I set the same random wallpaper in overview.
Op I need help like I’m using swww to set a random wallpaper at startup from my wallpaper folder, now I can’t understand how do I set the same wallpaper in overview.
I used 2 wallpaper applications to achieve this, swww and swaybg
layer-rule { match namespace="^wallpaper$" place-within-backdrop true }
swaybg -i .local/share/backgrounds/paint-blur.jpg &
swww img .local/share/backgrounds/paint.jpg
Hope this helps
I used this but I’m choosing a random wallpaper from my wallpaper folder. Btw thanks for this.
you could pick a random file from folader in a bash script… something like this:
RANDOM_FILE=$(find "$SOURCE_FOLDER" -type f | shuf -n 1)
I’m doing it but, Idk how do I set the same random wallpaper in overview.