Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
development:linux:themeing [2020/03/02 15:33]
kalenpw created
development:linux:themeing [2023/04/08 10:21] (current)
kalenpw
Line 1: Line 1:
 ====== Themeing ====== ====== Themeing ======
 +Dated, but here for posterity
  
 ---- ----
-put the following in ''.profile'' to tell qt programs to use gtk theme+===== GTK ===== 
 +Config file: ''~/.config/gtk-X.Y/settings.ini'' 
 +<code bash> 
 +[Settings] 
 +   gtk-theme-name=Equilux 
 +   gtk-icon-theme-name=Ultra-Flat 
 +   gtk-font-name=Sans 10 
 +   gtk-cursor-theme-name=DMZ-Black 
 +   gtk-cursor-theme-size=0 
 +   gtk-toolbar-style=GTK_TOOLBAR_BOTH 
 +   gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR 
 +   gtk-button-images=1 
 +   gtk-menu-images=1 
 +   gtk-enable-event-sounds=1 
 +   gtk-enable-input-feedback-sounds=1 
 +   gtk-xft-antialias=1 
 +   gtk-xft-hinting=1 
 +   gtk-xft-hintstyle=hintfull 
 +   gtk-xft-rgba=rgb 
 +</code> 
 + 
 +---- 
 +===== Qt ===== 
 +put the following in ''.profile'' to tell Qt programs to use gtk theme
 <code bash> <code bash>
 export QT_QPA_PLATFORMTHEME=gtk2 # tested on Ubuntu 18.04 export QT_QPA_PLATFORMTHEME=gtk2 # tested on Ubuntu 18.04
 </code> </code>
  
 +----
 ===== Specific Programs ===== ===== Specific Programs =====
  
-==== Calibre ====+** Calibre ** \\
 Add to ''.profile'' Add to ''.profile''
 <code bash> <code bash>
 export CALIBRE_USE_SYSTEM_THEME=1 export CALIBRE_USE_SYSTEM_THEME=1
 </code> </code>
 +----