bin: Add simple scripts to start our gui and apps

This commit is contained in:
June Tate-Gans 2021-05-23 13:13:05 -05:00
parent a00788ac07
commit 1d1c0ce63a
3 changed files with 12 additions and 0 deletions

4
bin/g13-clock Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env python3
import g13gui.applets.clock
g13gui.applets.clock.main()

4
bin/g13-profiles Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env python3
import g13gui.applets.profiles
g13gui.applets.profiles.main()

4
bin/g13gui Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env python3
import g13gui.main
g13gui.main.main()