Hello!
I have this script
and I want it to work on my new Kubuntu Intrepid.
How do I do that ?
Thanks.
P.S. Can someone tell me if system tray icon issue is fixed or not, because mine is still messed up...
I have this script
Code:
#!/bin/bash wallpapers=(~/pictures/*.jpg) wallpaper_count=${#wallpapers[@]} random_wallpaper=${wallpapers[(((wallpaper_count - 1) * RANDOM / 32767))]} dcop kdesktop KBackgroundIface setWallpaper "$random_wallpaper" 6 killall conky wall=`dcop kdesktop KBackgroundIface currentWallpaper 1` echo "$(date): ${wall}" >> ~/wall_log.txt & feh --bg-scale $wall conky
How do I do that ?
Thanks.
P.S. Can someone tell me if system tray icon issue is fixed or not, because mine is still messed up...
Comment