Created
May 22, 2022 18:43
-
-
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]
This file contains hidden or 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
| #!/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")}' |
This file contains hidden or 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
| #!/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