#!/usr/bin/python from subprocess import call state = call(['systemctl', '--user', 'is-active', '--quiet', 'redshift.service']) if state == 0: color = '#00FF00' else: color = '#FF0000' print(f'Redshift')