mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 02:35:20 +00:00
untested hotfix for copying data/ to system wide local data dir.
This commit is contained in:
parent
c9ed01e90b
commit
02dd51cbba
1 changed files with 9 additions and 4 deletions
13
setup.py
13
setup.py
|
@ -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"
|
||||
])
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue