Xfce Wiki

Sub domains
 

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
xfce:thunar:hidden-settings [2025/09/08 07:02] – [Hidden Settings List] alexxconsxfce:thunar:hidden-settings [2025/11/07 20:01] (current) – [Hidden Settings List] alexxcons
Line 52: Line 52:
 | /misc-undo-redo-history-size | int | Maximum number of ThunarJobOperations which can be undone/redone -1 for unlimited **New in thunar 4.18.x** | | /misc-undo-redo-history-size | int | Maximum number of ThunarJobOperations which can be undone/redone -1 for unlimited **New in thunar 4.18.x** |
 | /misc-vertical-split-pane | bool | Whether on F3 the panes should be split vertically or horizontally. **Available since thunar 4.17.8** |  | /misc-vertical-split-pane | bool | Whether on F3 the panes should be split vertically or horizontally. **Available since thunar 4.17.8** | 
 +| /smart-sort | bool | If enabled, filenames are split into collatable substrings and e.g. numbers are compared separately in a numeric way instead of comparing them digit-by-digit. If disbaled, plain ASCII is used. Change only takes effect after a thunar restart. **Available since thunar 4.21.3** | 
  
 ==== [1] File Drag Modes ==== ==== [1] File Drag Modes ====
Line 91: Line 92:
 For most graphical elements of //Thunar// (and all other gtk3 applications) , it is possible to customize them via CSS, as it is done with themes. For most graphical elements of //Thunar// (and all other gtk3 applications) , it is possible to customize them via CSS, as it is done with themes.
  
-Here an example for //Thunar// 1.8.x (gtk3 based):+Here an example (gtk3 based):
   - Create a file ~/.config/gtk-3.0/gtk.css   - Create a file ~/.config/gtk-3.0/gtk.css
   - Paste following content in this file:   - Paste following content in this file:
   - Save and restart thunar (thunar -q; thunar)   - Save and restart thunar (thunar -q; thunar)
  
-   +   /* Row and column Spacing for the icon view cab be adusted since Thunar 1.8.0 */ 
-  * {+    
 +   * {
      -ThunarAbstractIconView-row-spacing: 70;      -ThunarAbstractIconView-row-spacing: 70;
      -ThunarAbstractIconView-column-spacing: 30;      -ThunarAbstractIconView-column-spacing: 30;
Line 103: Line 105:
  
  
-For thunar //Thunar// 1.6.x (gtk2 based)+   /* The progressbar for devices in the shortcuts pane can be configured starting with Thunar 4.21.3 */ 
-  - Create a file ~/.gtkrc-2.+    
-  Paste following content in this file: +   /* Changing the progressbar height */ 
-  Save and restart thunar (thunar -q; thunar)+   .thunar .disk-space-usage-bar { min-height8px; } 
 +    
 +   /* Changing the color of progressbars */ 
 +   .thunar .disk-space-usage-bar--normal { backgroundnone; background-color: Green; } 
 +   .thunar .disk-space-usage-bar--warning { background: nonebackground-color: Purple; } 
 +   .thunar .disk-space-usage-bar--error { background: none; background-color: IndianRed; }
  
-  style "thunar-spaced-out-icons" + 
-  { +
-     ThunarIconView::column-spacing = 70 +
-     ThunarIconView::row-spacing = 30 +
-  } +
-  class "ThunarIconView" style "thunar-spaced-out-icons"  +
-  +
 Check the [[https://developer.gnome.org/gtk3/stable/chap-css-overview.html|GTK+ CSS Overview page]] to see learn how CSS can be used in gtk3. Check the [[https://developer.gnome.org/gtk3/stable/chap-css-overview.html|GTK+ CSS Overview page]] to see learn how CSS can be used in gtk3.