1
0
Fork 0
mirror of synced 2024-05-21 21:02:52 +12:00

Add /snap and /run to excluded directories by default

This commit is contained in:
Rafał Mikrut 2020-10-06 21:12:14 +02:00
parent 3b63798751
commit c725d1b850

View file

@ -307,7 +307,7 @@ fn main() {
let col_indices = [0, 1];
for i in ["/proc", "/dev", "/sys"].iter() {
for i in ["/proc", "/dev", "/sys", "/run", "/snap"].iter() {
let values: [&dyn ToValue; 2] = [&i, &(MAIN_ROW_COLOR.to_string())];
list_store.set(&list_store.append(), &col_indices, &values);
}