summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config/systemconfig.py
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-11-28 03:43:00 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-11-28 03:43:00 (GMT)
commit1d759a3014681e9d96bf1adf5fcbef86218e5cf4 (patch)
tree392d2fe0280d13fbde0e0401099afbf734731bd0 /abs/core/LinHES-config/systemconfig.py
parent85ff6f85a642d1497d77880b611a928af8599fa3 (diff)
downloadlinhes_pkgbuild-1d759a3014681e9d96bf1adf5fcbef86218e5cf4.zip
linhes_pkgbuild-1d759a3014681e9d96bf1adf5fcbef86218e5cf4.tar.gz
linhes_pkgbuild-1d759a3014681e9d96bf1adf5fcbef86218e5cf4.tar.bz2
linhes-config: fix large mouse not being set on install
Diffstat (limited to 'abs/core/LinHES-config/systemconfig.py')
-rwxr-xr-xabs/core/LinHES-config/systemconfig.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/abs/core/LinHES-config/systemconfig.py b/abs/core/LinHES-config/systemconfig.py
index 2c27549..0215181 100755
--- a/abs/core/LinHES-config/systemconfig.py
+++ b/abs/core/LinHES-config/systemconfig.py
@@ -42,9 +42,9 @@ def setup_x(systemconfig):
if not os.path.exists('/usr/share/icons/default'):
os.symlink('/usr/share/icons/whiteglass','/usr/share/icons/default');
if systemconfig["UseXLargeMouse"] == "1" :
- cmd = "echo Xcursor.size: 48 > ~/.Xdefaults"
+ cmd = "echo Xcursor.size: 48 > %s/.Xdefaults" %data_config.MYTHHOME
else:
- cmd = "echo Xcursor.size: 16 > ~/.Xdefaults"
+ cmd = "echo Xcursor.size: 16 > %s/.Xdefaults" %data_config.MYTHHOME
mv_common.runcmd(cmd)
cmd = "%s/bin/xconfig.sh" %systemconfig["MVROOT"]