URI: 
       tuntested hotfix for copying data/ to system wide local data dir. - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 02dd51cbba7c1370fdd62f51c3099f85e32d58e6
   DIR parent c9ed01e90b648d8c57c7d0e4adb986e09e71e588
  HTML Author: Amir Taaki <genjix@riseup.net>
       Date:   Mon, 20 Aug 2012 10:25:08 +0100
       
       untested hotfix for copying data/ to system wide local data dir.
       
       Diffstat:
         M setup.py                            |      13 +++++++++----
       
       1 file changed, 9 insertions(+), 4 deletions(-)
       ---
   DIR diff --git a/setup.py b/setup.py
       t@@ -25,10 +25,15 @@ if platform.system() != 'Windows' and platform.system() != 'Darwin':
                    data_files.append(  ('/usr/share/locale/%s/LC_MESSAGES'%lang, ['locale/%s/LC_MESSAGES/electrum.mo'%lang]) )
        
        data_files += [
       -    (util.appdata_dir(), ["data/background.png", "data/style.css"]),
       -    (os.path.join(util.appdata_dir(), "icons"), [
       -        "data/icons/confirmed.png",
       -        "data/icons/unconfirmed.png"
       +    (util.appdata_dir(), ["data/noface.svg", "data/README"]),
       +    (os.path.join(util.appdata_dir(), "cleanlook"), [
       +        "data/cleanlook/name.cfg",
       +        "data/cleanlook/style.css"
       +    ]),
       +    (os.path.join(util.appdata_dir(), "dark"), [
       +        "data/dark/background.png",
       +        "data/dark/name.cfg",
       +        "data/dark/style.css"
            ])
        ]