Blur stuff, dark mode, no fractional scaling (still buggy), uuids, fix tiling gaps, try to fix icons (it didn't work)
Some checks failed
/ check (push) Failing after 1m59s
Some checks failed
/ check (push) Failing after 1m59s
This commit is contained in:
parent
2290389cea
commit
3998f39375
3 changed files with 26 additions and 12 deletions
|
@ -581,20 +581,24 @@
|
||||||
clock-show-weekday = true;
|
clock-show-weekday = true;
|
||||||
font-name = "IosevkaLyteTerm 12";
|
font-name = "IosevkaLyteTerm 12";
|
||||||
monospace-font-name = "IosevkaLyteTerm 12";
|
monospace-font-name = "IosevkaLyteTerm 12";
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
# scaling-factor = 1.75;
|
# scaling-factor = 1.75;
|
||||||
};
|
};
|
||||||
"org/gnome/mutter" = {
|
"org/gnome/mutter" = {
|
||||||
experimental-features = ["scale-monitor-framebuffer" "variable-refresh-rate"];
|
experimental-features = ["variable-refresh-rate"];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/shell" = {
|
"org/gnome/shell" = {
|
||||||
disable-user-extensions = false;
|
disable-user-extensions = false;
|
||||||
enabled-extensions = [
|
enabled-extensions = with pkgs.gnomeExtensions; [
|
||||||
"tilingshell@ferrarodomenico.com"
|
tiling-shell.extensionUuid
|
||||||
|
appindicator.extensionUuid
|
||||||
|
blur-my-shell.extensionUuid
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/shell/extensions/tilingshell" = {
|
"org/gnome/shell/extensions/tilingshell" = {
|
||||||
|
inner-gaps = 8;
|
||||||
focus-window-right = ["<Super>l"];
|
focus-window-right = ["<Super>l"];
|
||||||
focus-window-left = ["<Super>h"];
|
focus-window-left = ["<Super>h"];
|
||||||
focus-window-up = ["<Super>k"];
|
focus-window-up = ["<Super>k"];
|
||||||
|
@ -603,8 +607,10 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs.gnomeExtensions; [
|
||||||
gnomeExtensions.tiling-shell
|
tiling-shell
|
||||||
|
blur-my-shell
|
||||||
|
appindicator
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.gnome-shell = {
|
programs.gnome-shell = {
|
||||||
|
|
|
@ -736,12 +736,22 @@
|
||||||
}: {
|
}: {
|
||||||
imports = with nixosModules; [pipewire];
|
imports = with nixosModules; [pipewire];
|
||||||
|
|
||||||
services.xserver.displayManager.gdm.enable = true;
|
services = {
|
||||||
services.xserver.desktopManager.gnome.enable = true;
|
xserver = {
|
||||||
|
enable = true;
|
||||||
|
displayManager.gdm.enable = true;
|
||||||
|
desktopManager.gnome.enable = true;
|
||||||
|
};
|
||||||
|
udev.packages = [pkgs.gnome-settings-daemon];
|
||||||
|
};
|
||||||
|
|
||||||
services.xserver.enable = true;
|
environment = {
|
||||||
|
variables.GSK_RENDERER = "gl";
|
||||||
environment.variables.GSK_RENDERER = "gl";
|
systemPackages = with pkgs; [
|
||||||
|
adwaita-icon-theme
|
||||||
|
adwaita-icon-theme-legacy
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
programs.kdeconnect = {
|
programs.kdeconnect = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -62,8 +62,6 @@ See [lib/internal.md](./lib/internal.md).
|
||||||
|
|
||||||
## Short Term
|
## Short Term
|
||||||
|
|
||||||
- gnome weather
|
|
||||||
- gnome notification sounds
|
|
||||||
- gnome missing icons
|
- gnome missing icons
|
||||||
- ghostty only notify if window or pane or w/e is not focused
|
- ghostty only notify if window or pane or w/e is not focused
|
||||||
- more-easily manage gitea repo mirroring to github?
|
- more-easily manage gitea repo mirroring to github?
|
||||||
|
|
Loading…
Reference in a new issue