blob: 6c982841aa6e3a17cdebb9f824fcf425458fd86e (
plain) (
blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{ ... }:
{
dconf.settings = {
"org/gnome/desktop/background" = {
picture-uri = "${../wallpaper.png}";
picture-options = "zoom";
};
"org/gnome/desktop/interface" = {
color-scheme="prefer-dark";
enable-hot-corners=false;
font-antialiasing="grayscale";
font-hinting="slight";
gtk-theme="Graphite-Dark";
icon-theme="Tela-brown-light";
show-battery-percentage=true;
};
"org/gnome/desktop/peripherals/touchpad" = {
edge-scrolling-enabled=false;
natural-scroll=true;
tap-to-click=true;
two-finger-scrolling-enabled=true;
};
"org/gnome/mutter" = {
dynamic-workspaces= true;
edge-tiling= true;
workspaces-only-on-primary= true;
};
"org/gnome/settings-daemon/plugins/power" = {
power-button-action="hibernate";
sleep-inactive-ac-type="nothing";
};
# ========= GNOME SHELL ============
"org/gnome/shell" = {
enabled-extensions = [
"[email protected]"
"blur-my-shell@aunetx"
"[email protected]"
"[email protected]"
"[email protected]"
"[email protected]"
];
disabled-extensions= [
"[email protected]"
"[email protected]"
];
};
"org/gnome/shell/extensions/user-theme".name = "Graphite-Dark";
"org/gnome/shell/extensions/blur-my-shell/applications" = {
blur=true;
blur-on-overview=false;
brightness=0.65;
enable-all=false;
opacity=255;
sigma=10;
whitelist = ["Emacs"];
};
"org/honem/shell/extensions/vitals" = {
hide-zeros = true;
position-in-panel = "0";
show-battery = false;
show-temperature = true;
};
"org/gnome/shell/app-switcher".current-workspace-only = true;
};
}
|