Yin-Yang
Yin-Yang copied to clipboard
How to add support for cinnamon?
trafficstars
#!/bin/bash
gsettings set org.cinnamon.desktop.interface gtk-theme "Adwaita-dark"
gsettings set org.cinnamon.desktop.interface cursor-theme "DMZ-Black"
gsettings set org.cinnamon.desktop.interface icon-theme "gnome"
gsettings set org.cinnamon.theme name "Mint-Y-Dark-Brown"
gsettings set org.cinnamon.desktop.wm.preferences theme "Mint-Y-Dark"
gsettings set org.cinnamon.desktop.background picture-uri "file:///home/user/Downloads/background.jpg"
#!/bin/bash
gsettings set org.cinnamon.desktop.interface gtk-theme "Adwaita"
gsettings set org.cinnamon.desktop.interface cursor-theme "DMZ-White"
gsettings set org.cinnamon.desktop.interface icon-theme "Mint-X"
gsettings set org.cinnamon.theme name "Mint-X-Teal"
gsettings set org.cinnamon.desktop.wm.preferences theme "Mint-Y"
gsettings set org.cinnamon.desktop.background picture-uri "file:///home/user/Downloads/background.jpg"
You can find the documentation in the wiki over here. If anything is missing, feel free to ask.
In your case, you want to:
- Extend the function
get_desktop()in theconfigmodule to detect cinnamon. - Extend the plugins
system,gtkandwallpaperto support cinnamon by creating a newPluginCommandLineclass. - Test everything.
- Create a pull request.