(topic deleted by author)
(You deleted post but I like to answer anyway…)
It is binded to W-A-w as standalone menu. And also present in Left Sidepanel.
Command is:
jgwallpaperchanger -s
# if you like to try it from cli:
jgwallpaperchanger -s &>/dev/null
At the moment I’m working on an update for default Istredd tint2 panel which will have it included as executor with thumbnail as icon. With easy to change actions for events like: left-click, wheel-up and wheel-down.
Nice the thumbnail…
When i was using Xfce4, long time ago, i played with gif animations in the panel. It is possible with genmon to add a script to show gif anims.
It showed random short animations in the panel. I could click on it and it opend the animation inside Mpv.
Useless but nice at that time to learn stuff.
I found the code i used .
#!/usr/bin/bash
# Dependencies: bash>=3.2, coreutils, file
# Makes the script more portable
readonly DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
MPV='sh /home/vogel/Data/xfce4-genmon-random-animation-gif/mpv-animator-gen.sh'
# Optional icon to display before the text
# Insert the absolute path of the icon
# Recommended size is 24x24 px
declare -r ICON_ARRAY=(
"${DIR}/icons/gifs/anim-1.gif"
"${DIR}/icons/gifs/anim-25.gif"
"${DIR}/icons/gifs/anim-3.gif"
"${DIR}/icons/gifs/anim-4.gif"
"${DIR}/icons/gifs/anim-5.gif"
"${DIR}/icons/gifs/anim-6.gif"
"${DIR}/icons/gifs/anim-7.gif"
"${DIR}/icons/gifs/anim-8.gif"
"${DIR}/icons/gifs/anim-9.gif"
"${DIR}/icons/gifs/anim-10.gif"
"${DIR}/icons/gifs/anim-11.gif"
"${DIR}/icons/gifs/anim-12.gif"
"${DIR}/icons/gifs/anim-13.gif"
"${DIR}/icons/gifs/anim-14.gif"
"${DIR}/icons/gifs/anim-15.gif"
"${DIR}/icons/gifs/anim-16.gif"
"${DIR}/icons/gifs/anim-16.gif"
"${DIR}/icons/gifs/anim-30.gif"
"${DIR}/icons/gifs/anim-50.gif"
"${DIR}/icons/gifs/anim-20.gif"
"${DIR}/icons/gifs/anim-21.gif"
"${DIR}/icons/gifs/anim-22.gif"
"${DIR}/icons/gifs/anim-23.gif"
"${DIR}/icons/gifs/anim-24.gif"
"${DIR}/icons/gifs/anim-25.gif"
"${DIR}/icons/gifs/anim-26.gif"
"${DIR}/icons/gifs/anim-27.gif"
"${DIR}/icons/gifs/anim-28.gif"
"${DIR}/icons/gifs/anim-29.gif"
"${DIR}/icons/gifs/anim-30.gif"
"${DIR}/icons/gifs/anim-31.gif"
"${DIR}/icons/gifs/anim-32.gif"
"${DIR}/icons/gifs/anim-33.gif"
"${DIR}/icons/gifs/anim-34.gif"
"${DIR}/icons/gifs/anim-35.gif"
"${DIR}/icons/gifs/anim-36.gif"
"${DIR}/icons/gifs/anim-37.gif"
"${DIR}/icons/gifs/anim-38.gif"
"${DIR}/icons/gifs/anim-39.gif"
"${DIR}/icons/gifs/anim-40.gif"
"${DIR}/icons/gifs/anim-41.gif"
"${DIR}/icons/gifs/anim-42.gif"
"${DIR}/icons/gifs/anim-43.gif"
"${DIR}/icons/gifs/anim-44.gif"
"${DIR}/icons/gifs/anim-45.gif"
"${DIR}/icons/gifs/anim-46.gif"
"${DIR}/icons/gifs/anim-47.gif"
"${DIR}/icons/gifs/anim-48.gif"
"${DIR}/icons/gifs/anim-49.gif"
"${DIR}/icons/gifs/anim-50.gif"
"${DIR}/icons/gifs/anim-51.gif"
"${DIR}/icons/gifs/anim-52.gif"
)
# Compute random die
DIE=$(( RANDOM % 52 ))
# Panel
if [[ $(file -b "${ICON_ARRAY[DIE]}") =~ GIF|PNG ]]; then
INFO="<img>${ICON_ARRAY[DIE]}</img>"
INFO+="<click>"${MPV}"</click>"
INFO+="<txt>""</txt>"
fi
# Tooltip
MORE_INFO="<tool>"
MORE_INFO+="$(( DIE + 1 ))"
MORE_INFO+="</tool>"
# Panel Print
echo -e "${INFO}"
# Tooltip Print
echo -e "${MORE_INFO}"
Forgot the name of the animation…
Found old link too…
Thank you both!