Yin-Yang icon indicating copy to clipboard operation
Yin-Yang copied to clipboard

How to add support for cinnamon?

Open gitbitfit opened this issue 4 years ago • 1 comments
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"

gitbitfit avatar Jul 30 '21 16:07 gitbitfit

You can find the documentation in the wiki over here. If anything is missing, feel free to ask.

In your case, you want to:

  1. Extend the function get_desktop() in the config module to detect cinnamon.
  2. Extend the plugins system, gtk and wallpaper to support cinnamon by creating a new PluginCommandLine class.
  3. Test everything.
  4. Create a pull request.

l0drex avatar Jul 30 '21 20:07 l0drex