Closed jmauro closed 1 year ago
A fix is to change it to use gnome shell as a fallback: else: output = os.popen("gnome-session --version") result = output.readlines() if len(result) < 1: output = os.popen("gnome-shell --version") result = output.readlines() version = result[0].split()[2].split('.')[0] else: version = result[0].split()[1].split('.')[0]
Hi everyone,
There is any issue with the lastest Debian testing gnome-shell (3.16.2-4), apparently the command line
gnome-session --version
returns an empty line:So https://github.com/vajrasky/wallpapoz/blob/master/share/wallpapoz/lib/wallpapoz_system.py#L66 doesn't work properly.
I don't think there is something to do except waiting for debian community to fix the issue but I just wanted to broadcast the information.
Regards, JM