auto hide gnome status bar
This commit is contained in:
parent
64955d8ec0
commit
b844a37730
1 changed files with 18 additions and 1 deletions
|
|
@ -42,8 +42,12 @@ in
|
||||||
xkb-options = [ "" ];
|
xkb-options = [ "" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Favorite applications in dash
|
# GNOME Shell configuration
|
||||||
"org/gnome/shell" = {
|
"org/gnome/shell" = {
|
||||||
|
disable-user-extensions = false;
|
||||||
|
enabled-extensions = [
|
||||||
|
"hidetopbar@mathieu.bidon.ca"
|
||||||
|
];
|
||||||
favorite-apps = [
|
favorite-apps = [
|
||||||
"org.gnome.Nautilus.desktop"
|
"org.gnome.Nautilus.desktop"
|
||||||
"firefox.desktop"
|
"firefox.desktop"
|
||||||
|
|
@ -53,6 +57,14 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Hide Top Bar extension configuration
|
||||||
|
"org/gnome/shell/extensions/hidetopbar" = {
|
||||||
|
enable-intellihide = true;
|
||||||
|
enable-active-window = true;
|
||||||
|
mouse-sensitive = false;
|
||||||
|
mouse-sensitive-fullscreen-window = false;
|
||||||
|
};
|
||||||
|
|
||||||
# GNOME Terminal configuration with Gruvbox Dark theme (matching ghostty)
|
# GNOME Terminal configuration with Gruvbox Dark theme (matching ghostty)
|
||||||
"org/gnome/terminal/legacy" = {
|
"org/gnome/terminal/legacy" = {
|
||||||
schema-version = mkUint32 3;
|
schema-version = mkUint32 3;
|
||||||
|
|
@ -143,5 +155,10 @@ in
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
x11.enable = true;
|
x11.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# GNOME Shell extensions
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
gnomeExtensions.hide-top-bar
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue