Forked from krishraghuram/change_desktop_background.py
Created
December 19, 2019 19:23
-
-
Save computercam/eb79ea7853d13e1027be3d6ed542903d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import subprocess | |
import re | |
command = ['qdbus', 'org.kde.plasmashell', '/PlasmaShell', 'org.kde.PlasmaShell.evaluateScript'] | |
command.append(""" | |
var allDesktops = desktops(); | |
for (i=0;i<allDesktops.length;i++) | |
{ | |
d = allDesktops[i]; | |
d.wallpaperPlugin = "org.kde.image"; | |
d.currentConfigGroup = Array("Wallpaper", "org.kde.image", "General"); | |
d.writeConfig("Image", "file://%s"); | |
} | |
""") | |
proc = subprocess.run(['acpi','-i'], stdout=subprocess.PIPE) | |
acpi_info = proc.stdout.decode('utf-8') | |
if re.search('Discharging',acpi_info): | |
command[-1] = command[-1] % '/home/raghuram/Pictures/discharging.png' | |
elif re.search('Charging',acpi_info) or re.search('Full',acpi_info): | |
command[-1] = command[-1] % '/home/raghuram/Pictures/charging.png' | |
else: | |
command[-1] = command[-1] % '/home/raghuram/Pictures/shrug.png' | |
subprocess.run(command) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment