Browse Source

Merge pull request #94 from cuu/master

1.22
GNU 5 years ago
parent
commit
c317ba5d35
5 changed files with 7 additions and 3 deletions
  1. 2 0
      .gitignore
  2. 1 1
      sys.py/config.py
  3. 0 0
      sys.py/gsnotify/Jobs/.gitkeep
  4. BIN
      sys.py/gsnotify/gsnotify-arm
  5. 4 2
      sys.py/run.py

+ 2 - 0
.gitignore

@@ -6,3 +6,5 @@ retroarch-core-options.cfg
 sys.py/.powerlevel
 sys.py/.buttonslayout
 *.cfg
+**/Jobs/*
+!**/Jobs/.gitkeep

+ 1 - 1
sys.py/config.py

@@ -12,7 +12,7 @@ MPD_socket = "/tmp/mpd.socket"
 
 UPDATE_URL="https://raw.githubusercontent.com/clockworkpi/CPI/master/launcher_ver.json"
 
-VERSION="stable 1.21"
+VERSION="stable 1.22"
 
 SKIN="default"
 

+ 0 - 0
sys.py/gsnotify/Jobs/.gitkeep


BIN
sys.py/gsnotify/gsnotify-arm


+ 4 - 2
sys.py/run.py

@@ -296,7 +296,7 @@ def event_process(event,main_screen):
                 pygame.quit()
                 gobject_main_loop.quit()
                 os.chdir( GetExePath())
-                exec_app_cmd = "cd "+os.path.dirname(event.message)+";"
+                exec_app_cmd = "./gsnotify/gsnotify-arm& cd "+os.path.dirname(event.message)+";"
                 exec_app_cmd += event.message
                 exec_app_cmd += "; sync & cd "+GetExePath()+"; exec python "+myscriptname
                 print(exec_app_cmd)
@@ -539,6 +539,8 @@ if __name__ == '__main__':
             os.system("sudo iw wlan0 set power_save off")
         else:
             os.system("sudo iw wlan0 set power_save on")
-    
+
+    os.spawnlp(os.P_NOWAIT,"./gsnotify/gsnotify-arm",  "./gsnotify/gsnotify-arm")
+        
     big_loop()