Add default settings for gnome apps
This commit is contained in:
parent
1798adb555
commit
b42275d2fc
@ -59,7 +59,10 @@ in {
|
|||||||
*, html, body, body.plain div, body.plain a, body.plain p, body.plain span {
|
*, html, body, body.plain div, body.plain a, body.plain p, body.plain span {
|
||||||
background: ${config.themes.colors .bg} !important;
|
background: ${config.themes.colors .bg} !important;
|
||||||
color: ${config.themes.colors.fg} !important;
|
color: ${config.themes.colors.fg} !important;
|
||||||
font: 16px 'IBM Plex Mono', monospace;
|
font-family: 'IBM Plex Mono', monospace !important;
|
||||||
|
}
|
||||||
|
*, html, body {
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
xdg.configFile."geary/account_03/geary.ini".text = lib.generators.toGitINI gearyConfig;
|
xdg.configFile."geary/account_03/geary.ini".text = lib.generators.toGitINI gearyConfig;
|
||||||
|
@ -11,5 +11,45 @@
|
|||||||
services.gvfs.enable = true;
|
services.gvfs.enable = true;
|
||||||
home-manager.users.balsoft = {
|
home-manager.users.balsoft = {
|
||||||
xdg.userDirs.enable = true;
|
xdg.userDirs.enable = true;
|
||||||
|
dconf.settings = {
|
||||||
|
"org/gnome/nautilus/icon-view" = {
|
||||||
|
captions = [ "size" "date_modified" "none" ];
|
||||||
|
};
|
||||||
|
"org/gnome/nautilus/list-view" = {
|
||||||
|
default-column-order = [
|
||||||
|
"name"
|
||||||
|
"size"
|
||||||
|
"type"
|
||||||
|
"owner"
|
||||||
|
"group"
|
||||||
|
"permissions"
|
||||||
|
"where"
|
||||||
|
"date_modified"
|
||||||
|
"date_modified_with_time"
|
||||||
|
"date_accessed"
|
||||||
|
"recency"
|
||||||
|
"starred"
|
||||||
|
"detailed_type"
|
||||||
|
];
|
||||||
|
default-visible-columns = [ "name" "size" "date_modified" "starred" ];
|
||||||
|
};
|
||||||
|
"org/gnome/nautilus/preferences" = {
|
||||||
|
default-folder-viewer = "list-view";
|
||||||
|
executable-text-activation = "display";
|
||||||
|
search-filter-time-type = "last_modified";
|
||||||
|
search-view = "list-view";
|
||||||
|
show-image-thumbnails = "always";
|
||||||
|
thumbnail-limit = 10;
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/evince/default" = {
|
||||||
|
inverted-colors = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
"org/gnome/maps" = {
|
||||||
|
night-mode = true;
|
||||||
|
transportation-type = "car";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user