O aplicativo Temas não mostra a visualização de temas GTK instalados (bordas e controles da janela) em Canela

1

Eu instalei o Cinnamon no Ubuntu usando um ppa. O problema que tenho é que os temas GTK recém-instalados não mostram prévias na aplicação Temas. Aqui estão as imagens. .Como você pode ver o As bordas da janela e as visualizações de controles estão em branco. Como faço para corrigir isso? No entanto, temas padrão como o Mint-x exibem visualizações.

    
por Wally 11.05.2015 / 15:57

1 resposta

0

Resposta tardia, mas espero que ainda possa ser útil. O mais provável é que isso aconteça porque não há miniaturas de tema para a canela. Veja /usr/share/cinnamon/thumbnails/gtk-3.0/README :

HOW TO MAKE A GTK THEME THUMBNAIL?
----------------------------------

- Install ImageMagick ("apt install imagemagick")
- Open a terminal and run "cinnamon-preview-gtk-theme mytheme" (where mytheme is the name of the Theme you want to thumbnail)
- Press Alt+Print-Screen to take a screenshot of the window
- Go to your Pictures directory and move the screenshot to ~/screenshot.png
- Open a terminal and type:

       cd
       convert screenshot.png -gravity north-west -extent 120x35 thumbnail.png

WHICH THUMBNAIL IS USED BY CINNAMON TO REPRESENT A THEME?
---------------------------------------------------------

- Cinnamon first tries to find a gtk-3.0/thumbnail.png file in the theme directory
- If it doesn't find any, it looks in /usr/share/cinnamon/thumbnails/gtk-3.0/

e /usr/share/cinnamon/thumbnails/metacity-1/README :

HOW TO MAKE A METACITY THUMBNAIL?
---------------------------------

- Install ImageMagick ("apt install imagemagick")
- Open a window (Nemo for instance)
- Press Alt+Print-Screen to take a screenshot of the window
- Go to your Pictures directory and move the screenshot to ~/screenshot.png
- Open a terminal and type:

       cd
       convert screenshot.png -gravity north-east -extent 100x32 thumbnail.png

WHICH THUMBNAIL IS USED BY CINNAMON TO REPRESENT A THEME?
---------------------------------------------------------

- Cinnamon first tries to find a metacity-1/thumbnail.png file in the theme directory
- If it doesn't find any, it looks in /usr/share/cinnamon/thumbnails/metacity-1/
    
por 12.05.2016 / 20:54