minor
This commit is contained in:
parent
fb93c2e8f3
commit
75d1e559d5
2 changed files with 14 additions and 1 deletions
|
|
@ -28,6 +28,5 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
obsidian
|
obsidian
|
||||||
keepassxc
|
keepassxc
|
||||||
gnomeExtensions.pano # Clipboard manager (similar to Maccy)
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -47,6 +47,7 @@ in
|
||||||
disable-user-extensions = false;
|
disable-user-extensions = false;
|
||||||
enabled-extensions = [
|
enabled-extensions = [
|
||||||
"hidetopbar@mathieu.bidon.ca"
|
"hidetopbar@mathieu.bidon.ca"
|
||||||
|
"pano@elhan.io"
|
||||||
];
|
];
|
||||||
favorite-apps = [
|
favorite-apps = [
|
||||||
"org.gnome.Nautilus.desktop"
|
"org.gnome.Nautilus.desktop"
|
||||||
|
|
@ -63,6 +64,8 @@ in
|
||||||
enable-active-window = true;
|
enable-active-window = true;
|
||||||
mouse-sensitive = false;
|
mouse-sensitive = false;
|
||||||
mouse-sensitive-fullscreen-window = false;
|
mouse-sensitive-fullscreen-window = false;
|
||||||
|
animation-time-autohide = 0.0; # Instant hide/show (no animation)
|
||||||
|
animation-time-overview = 0.0; # Instant overview transition
|
||||||
};
|
};
|
||||||
|
|
||||||
# GNOME Terminal configuration with Gruvbox Dark theme (matching ghostty)
|
# GNOME Terminal configuration with Gruvbox Dark theme (matching ghostty)
|
||||||
|
|
@ -145,6 +148,16 @@ in
|
||||||
download-updates = false;
|
download-updates = false;
|
||||||
download-updates-notify = false;
|
download-updates-notify = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Notification settings
|
||||||
|
"org/gnome/desktop/notifications" = {
|
||||||
|
show-banners = false; # Disable notification popups (still logged in notification center)
|
||||||
|
};
|
||||||
|
|
||||||
|
# Sound settings
|
||||||
|
"org/gnome/desktop/sound" = {
|
||||||
|
event-sounds = false; # Disable notification sounds
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Configure cursor theme system-wide
|
# Configure cursor theme system-wide
|
||||||
|
|
@ -159,6 +172,7 @@ in
|
||||||
# GNOME Shell extensions
|
# GNOME Shell extensions
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
gnomeExtensions.hide-top-bar
|
gnomeExtensions.hide-top-bar
|
||||||
|
gnomeExtensions.pano
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue