Skip to content

Commit

Permalink
ags: fix icons
Browse files Browse the repository at this point in the history
  • Loading branch information
brckd committed Jul 3, 2024
1 parent 7945343 commit e148ef7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion modules/home/ags/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ in {
'';
};
};
home.packages = with pkgs; [bun prefetch-npm-deps];
gtk = {
enable = true;
iconTheme = {
name = "MoreWaita";
package = pkgs.morewaita-icon-theme;
};
};
home.packages = with pkgs; [bun prefetch-npm-deps gnome.adwaita-icon-theme morewaita-icon-theme];
};
}
2 changes: 1 addition & 1 deletion modules/home/ags/widget/PowerMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const PowerButton = (command: string, icon: string) => Widget.Button({
export const PowerMenu = () => Widget.Box({
className: "powermenu",
children: [
PowerButton("shutdown now", "nixos-symbolic")
PowerButton("shutdown now", "system-shutdown-symbolic")
]
})

Expand Down

0 comments on commit e148ef7

Please sign in to comment.