#!/usr/bin/env python ##Copyright (C) 2010 Louis Taylor ## _ ___ _____ ##| | | _ \_ _| ##| |__| _/ | | ##|____|_| |_| *programus optimus est* ## louistaylor.wordpress.com import os def change_wallpaper(imagefile): cmd = 'gconftool-2 -s /desktop/gnome/background/picture_filename -t string "%s"' % imagefile os.system(cmd)
if __name__ == '__main__': change_wallpaper ('background.jpg')
#!/usr/bin/env python ##Copyright (C) 2010 Louis Taylor ## _ ___ _____ ##| | | _ \_ _| ##| |__| _/ | | ##|____|_| |_| *programus optimus est* ## louistaylor.wordpress.com import os def change_wallpaper(imagefile): cmd = 'gconftool-2 -s /desktop/gnome/background/picture_filename -t string "%s"' % imagefile os.system(cmd) if __name__ == '__main__': change_wallpaper ('background.jpg')
|