mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
12 lines
229 B
Python
Executable File
12 lines
229 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import subprocess, os
|
|
|
|
s = subprocess.check_output("nmcli networking connectivity check", shell=True)
|
|
|
|
if b'full' in s:
|
|
os.system('~/.config/polybar/gmail/run.py')
|
|
if b'limited' in s:
|
|
print('')
|
|
|