| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| xfce:thunar:hidden-settings [2025/08/16 00:06] – [[1] Window Title Styles] alexxcons | xfce:thunar:hidden-settings [2025/11/07 20:01] (current) – [Hidden Settings List] alexxcons |
|---|
| | /misc-confirm-move-to-trash | bool | If true enables a confirmation to move files to trash (similar to permanently delete) **since thunar 4.18.x** | | | /misc-confirm-move-to-trash | bool | If true enables a confirmation to move files to trash (similar to permanently delete) **since thunar 4.18.x** | |
| | /misc-confirm-close-multiple-tabs | bool | Whether to show a confirmation dialog when closing a window with multiple open tabs. | | | /misc-confirm-close-multiple-tabs | bool | Whether to show a confirmation dialog when closing a window with multiple open tabs. | |
| | | /misc-ctrl-scroll-wheel-to-zoom | bool | Whether CTRL + SCROLL-WHEEL to Zoom is enabled. **Available since thunar 4.19.3** | |
| | /misc-display-launcher-name-as-filename | bool | Whether to show real file names or launcher names for .desktop files **since thunar 4.19.3** | | | /misc-display-launcher-name-as-filename | bool | Whether to show real file names or launcher names for .desktop files **since thunar 4.19.3** | |
| | /misc-file-drag-mode | enum | Choose between 3 DnD modes for files (see [1] for available options) **since thunar 4.21.3** | | | /misc-file-drag-mode | enum | Choose between 3 DnD modes for files (see [1] for available options) **since thunar 4.21.3** | |
| | /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 ==== |
| 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; |
| |
| |
| 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.0 | |
| - Paste following content in this file: | /* Changing the progressbar height */ |
| - Save and restart thunar (thunar -q; thunar) | .thunar .disk-space-usage-bar { min-height: 8px; } |
| | |
| | /* Changing the color of progressbars */ |
| | .thunar .disk-space-usage-bar--normal { background: none; background-color: Green; } |
| | .thunar .disk-space-usage-bar--warning { background: none; background-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. |
| |