1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/* -*- Mode: Blueprint; indent-tabs-mode: nil; tab-width: 2 -*-
*
* SPDX-License-Identifier: CC-BY-SA-4.0
* SPDX-FileCopyrightText: Michael Terry
*/
using Gtk 4.0;
template $ConfigExcludeFolderGroup: $ConfigFolderGroup {
add-label: _("Add I_gnored Folder…");
key: "exclude-list";
title: _("Folders to Ignore");
header-suffix: $HelpButton {
Label {
label: _("These folders are always ignored:");
max-width-chars: 35;
wrap: true;
xalign: 0.0;
styles [
"heading",
]
}
Label {
label: "~/.cache\n~/.ccache\n~/.config/*/Cache\n~/.config/*/Code Cache\n~/.gvfs\n~/.Private\n~/.steam/root\n~/.var/app/*/cache\n~/.var/app/*/config/Cache\n~/.var/app/*/config/Code Cache\n~/.var/app/com.valvesoftware.Steam/.steam/root\n~/snap/*/*/.cache\n~/snap/*/*/.config/Cache\n~/snap/*/*/.config/Code Cache\n/dev\n/proc\n/run\n/sys\n/tmp";
margin-top: 6;
xalign: 0.0;
styles [
"monospace",
]
}
};
}
|