Browse Source

Merge pull request #36 from thimslugga/patch-1

Add interpreter and cleanup imports + carriage returns
pull/46/head
Weilbyte 4 years ago
committed by GitHub
parent
commit
6221cc8b45
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      PVEDiscordDark.py

12
PVEDiscordDark.py

@ -1,13 +1,15 @@
import sys,os #!/usr/bin/python3
import os
import sys
import time
import subprocess import subprocess
import urllib.request import urllib.request
import os.path import os.path
import shutil import shutil
import argparse import argparse
import os
import time
ACTION = None ACTION = None
images = [ images = [
'dd_cephblurp.png', 'dd_cephwhite.png', 'dd_cephblurp.png', 'dd_cephwhite.png',
@ -180,7 +182,7 @@ def main():
print('\n') print('\n')
exit(0) exit(0)
else: else:
if ACTION == 'install': if ACTION == 'install':
installTheme() installTheme()
else: else:
if themeIsInstalled(): if themeIsInstalled():

Loading…
Cancel
Save