Skip to content

Instantly share code, notes, and snippets.

@vinloo
Created May 22, 2022 18:43
Show Gist options
  • Select an option

  • Save vinloo/8a466a6feecef0a0803fcc10ab129368 to your computer and use it in GitHub Desktop.

Select an option

Save vinloo/8a466a6feecef0a0803fcc10ab129368 to your computer and use it in GitHub Desktop.
Switch between light and dark mode in Manjaro KDE [Breath/Breath Night themes and Bamboo/Bamboo Night wallpapers]
#!/bin/bash
lookandfeeltool -a org.manjaro.breath-dark.desktop
# you can replace the path with your own wallpaper
qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript 'var allDesktops = desktops();print (allDesktops);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:///usr/share/wallpapers/Bamboo at Night/contents/images/5120x2880.png")}'
#!/bin/bash
lookandfeeltool -a org.manjaro.breath.desktop
# you can replace the path with your own wallpaper
qdbus org.kde.plasmashell /PlasmaShell org.kde.PlasmaShell.evaluateScript 'var allDesktops = desktops();print (allDesktops);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:///usr/share/wallpapers/Bamboo/contents/images/5120x2880.png")}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment