=== tsimonq2alt is now known as tsimonq2 [08:37] fossfreedom: Re: https://launchpadlibrarian.net/316882511/nautilus-dropbox_2015.10.28-1ubuntu2.debdiff I think it'd be cleaner, now and for the future, if 'if ["Unity","Budgie"] in current_env...' === cjwatson_ is now known as cjwatson === pipedrea1 is now known as pipedream === alan_g is now known as alan_g_ [18:10] Unit193: thanks for the hint. Thats not a python syntax I'm aware of - it doesnt seem to work for me [18:10] better like this? if any(word in 'Unity Budgie' for word in current_env): [18:34] Unit193: fossfreedom: ha. It'll end up being like the Browser User Agent strings (report everything), or the ACPI OS string (report "Windows") [18:35] if current_env in ('Unity', 'Budgie'): [18:41] sladen: hmm - tried that ... not working either http://paste.ubuntu.com/24455698/ [18:42] sladen: Yeah it'd be much better to actually check for indicator support than to go by desktop. And indeed it sort of does. [18:44] ah, it's a list. sorry [18:44] set(['Budgie', 'GNOME']).intersection(('Unity', 'Budgie')) [18:44] or stick with the solution you've already debugged :) [18:46] thanks sladen