switch icon theme to adwaita
This commit is contained in:
parent
3e61bdcd8b
commit
53c2df23d0
4 changed files with 33 additions and 11 deletions
|
|
@ -76,7 +76,7 @@
|
||||||
url = "https://web.whatsapp.com/";
|
url = "https://web.whatsapp.com/";
|
||||||
manifestUrl = "https://web.whatsapp.com/data/manifest.json";
|
manifestUrl = "https://web.whatsapp.com/data/manifest.json";
|
||||||
desktopEntry = {
|
desktopEntry = {
|
||||||
icon = "${pkgs.colloid-icon-theme}/share/icons/Colloid/apps/scalable/whatsapp.svg";
|
icon = "${pkgs.morewaita-icon-theme}/share/icons/MoreWaita/scalable/apps/whatsapp.svg";
|
||||||
categories = [
|
categories = [
|
||||||
"Network"
|
"Network"
|
||||||
"Chat"
|
"Chat"
|
||||||
|
|
@ -306,8 +306,8 @@
|
||||||
};
|
};
|
||||||
search =
|
search =
|
||||||
let
|
let
|
||||||
nixIcon = "${pkgs.colloid-icon-theme}/share/icons/Colloid/apps/scalable/nix-snowflake.svg";
|
nixIcon = "/run/current-system/sw/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||||
searchIcon = "${pkgs.colloid-icon-theme}/share/icons/Colloid-Dark/places/symbolic/folder-saved-search-symbolic.svg";
|
searchIcon = "${pkgs.adwaita-icon-theme}/share/icons/Adwaita/scalable/places/folder-saved-search-symbolic.svg";
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
force = true;
|
force = true;
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,8 @@
|
||||||
kde-rounded-corners
|
kde-rounded-corners
|
||||||
kdePackages.partitionmanager
|
kdePackages.partitionmanager
|
||||||
pkgs.catppuccin-cursors.mochaPeach
|
pkgs.catppuccin-cursors.mochaPeach
|
||||||
|
adwaita-icon-theme
|
||||||
|
morewaita-icon-theme
|
||||||
|
|
||||||
# gui applications
|
# gui applications
|
||||||
input-leap
|
input-leap
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,31 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dconf.settings = {
|
||||||
|
"org/gnome/desktop/interface" = {
|
||||||
|
color-scheme = "prefer-dark";
|
||||||
|
clock-format = "12h";
|
||||||
|
clock-show-weekday = true;
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/wm/preferences" = {
|
||||||
|
button-layout = ":";
|
||||||
|
action-double-click-titlebar = "'none'";
|
||||||
|
};
|
||||||
|
"org/gnome/desktop/media-handling" = {
|
||||||
|
automount = false;
|
||||||
|
automount-open = false;
|
||||||
|
autorun-never = true;
|
||||||
|
};
|
||||||
|
"org/gnome/settings-daemon/plugins/power" = {
|
||||||
|
sleep-inactive-ac-type = "nothing";
|
||||||
|
};
|
||||||
|
"org/gnome/mutter" = {
|
||||||
|
edge-tiling = true;
|
||||||
|
dynamic-workspaces = true;
|
||||||
|
experimental-features = [ "variable-refresh-rate" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
home.pointerCursor = {
|
home.pointerCursor = {
|
||||||
gtk.enable = true;
|
gtk.enable = true;
|
||||||
name = config.userOptions.cursor.name;
|
name = config.userOptions.cursor.name;
|
||||||
|
|
@ -48,15 +73,10 @@
|
||||||
# else "Breeze";
|
# else "Breeze";
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# iconTheme = {
|
|
||||||
# name = if config.userOptions.isDark then "Colloid-Dark" else "Colloid-Light";
|
|
||||||
# package = pkgs.colloid-icon-theme;
|
|
||||||
# };
|
|
||||||
|
|
||||||
colorScheme = "dark";
|
colorScheme = "dark";
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
name = "Colloid-Dark";
|
name = "MoreWaita";
|
||||||
package = pkgs.colloid-icon-theme;
|
package = pkgs.morewaita-icon-theme;
|
||||||
};
|
};
|
||||||
|
|
||||||
cursorTheme = {
|
cursorTheme = {
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@
|
||||||
layer = "overlay";
|
layer = "overlay";
|
||||||
font = with config.userOptions.fontMono; name + ":size=" + toString (size + 2);
|
font = with config.userOptions.fontMono; name + ":size=" + toString (size + 2);
|
||||||
launch-prefix = "${pkgs.niri}/bin/niri msg action spawn --";
|
launch-prefix = "${pkgs.niri}/bin/niri msg action spawn --";
|
||||||
icon-theme = "Colloid-Dark";
|
icon-theme = config.gtk.iconTheme.name;
|
||||||
};
|
};
|
||||||
border = {
|
border = {
|
||||||
width = 2;
|
width = 2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue