aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2017-08-07 12:20:46 -0700
committerJon Lund Steffensen <jonlst@gmail.com>2017-08-07 12:20:49 -0700
commit74759e8dfbfce5812cbd6afac77c4bfe5fdd918e (patch)
tree3b23643629247e9eec806fdd2224da1b66058de6 /src
parentMerge pull request #490 from jonls/windows-resources (diff)
downloadredshift-ng-74759e8dfbfce5812cbd6afac77c4bfe5fdd918e.tar.gz
redshift-ng-74759e8dfbfce5812cbd6afac77c4bfe5fdd918e.tar.bz2
redshift-ng-74759e8dfbfce5812cbd6afac77c4bfe5fdd918e.tar.xz
Fix #492: Correctly import xdg modules
Although not named like modules, the BaseDirectory and DesktopEntry are really submodules of xdg that need to be imported for them to be available.
Diffstat (limited to 'src')
-rw-r--r--src/redshift-gtk/utils.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/redshift-gtk/utils.py b/src/redshift-gtk/utils.py
index d74b567..9365356 100644
--- a/src/redshift-gtk/utils.py
+++ b/src/redshift-gtk/utils.py
@@ -22,9 +22,11 @@ import os
import sys
try:
- import xdg
+ from xdg import BaseDirectory
+ from xdg import DesktopEntry
+ has_xdg = True
except ImportError:
- xdg = None
+ has_xdg = False
REDSHIFT_DESKTOP = 'redshift-gtk.desktop'
@@ -36,12 +38,12 @@ AUTOSTART_KEYS = (('Hidden', ('true', 'false')),
def open_autostart_file():
- autostart_dir = xdg.BaseDirectory.save_config_path("autostart")
+ autostart_dir = BaseDirectory.save_config_path("autostart")
autostart_file = os.path.join(autostart_dir, REDSHIFT_DESKTOP)
if not os.path.exists(autostart_file):
desktop_files = list(
- xdg.BaseDirectory.load_data_paths(
+ BaseDirectory.load_data_paths(
"applications", REDSHIFT_DESKTOP))
if not desktop_files:
@@ -50,22 +52,22 @@ def open_autostart_file():
desktop_file_path = desktop_files[0]
# Read installed file
- dfile = xdg.DesktopEntry.DesktopEntry(desktop_file_path)
+ dfile = DesktopEntry.DesktopEntry(desktop_file_path)
for key, values in AUTOSTART_KEYS:
dfile.set(key, values[False])
dfile.write(filename=autostart_file)
else:
- dfile = xdg.DesktopEntry.DesktopEntry(autostart_file)
+ dfile = DesktopEntry.DesktopEntry(autostart_file)
return dfile, autostart_file
def supports_autostart():
- return xdg is not None
+ return has_xdg
def get_autostart():
- if xdg is None:
+ if not has_xdg:
return False
dfile, path = open_autostart_file()
@@ -74,7 +76,7 @@ def get_autostart():
def set_autostart(active):
- if xdg is None:
+ if not has_xdg:
return
dfile, path = open_autostart_file()