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 c5dda60 commit 0e1deb0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 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];
};
}
11 changes: 6 additions & 5 deletions modules/home/ags/widget/PowerMenu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ export const PowerButton = (command: string, icon: string) =>
child: Widget.Icon(icon),
});

export const PowerMenu = () =>
Widget.Box({
className: "powermenu",
children: [PowerButton("shutdown now", "nixos-symbolic")],
});
export const PowerMenu = () => Widget.Box({
className: "powermenu",
children: [
PowerButton("shutdown now", "system-shutdown-symbolic")
]
})

export default PowerMenu;

0 comments on commit 0e1deb0

Please sign in to comment.