Skip to content

Commit

Permalink
Fix power menu bug and change bg image
Browse files Browse the repository at this point in the history
Signed-off-by: Kajus Naujokaitis <[email protected]>
  • Loading branch information
kajusnau authored and brianmcgillion committed Oct 9, 2024
1 parent 8c94a34 commit cc52a30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions modules/desktop/graphics/ewwbar.nix
Original file line number Diff line number Diff line change
Expand Up @@ -498,15 +498,15 @@ in
(widget_button
:icon "${power-icon}"
:header "Shutdown"
:onclick "${eww-popup}/bin/eww-popup power-menu; ${eww-power}/bin/eww-power poweroff")
:onclick "${eww-popup}/bin/eww-popup power-menu & ${eww-power}/bin/eww-power poweroff &")
(widget_button
:icon "${suspend-icon}"
:header "Suspend"
:onclick "${eww-popup}/bin/eww-popup power-menu; ${eww-power}/bin/eww-power suspend")
:onclick "${eww-popup}/bin/eww-popup power-menu & ${eww-power}/bin/eww-power suspend &")
(widget_button
:icon "${restart-icon}"
:header "Reboot"
:onclick "${eww-popup}/bin/eww-popup power-menu; ${eww-power}/bin/eww-power reboot")
:onclick "${eww-popup}/bin/eww-popup power-menu & ${eww-power}/bin/eww-power reboot &")
))
(defwidget settings_buttons []
(box
Expand Down
2 changes: 1 addition & 1 deletion modules/desktop/graphics/labwc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ in
};
wallpaper = lib.mkOption {
type = lib.types.path;
default = "${pkgs.ghaf-artwork}/ghaf-wallpaper.png";
default = "${pkgs.ghaf-artwork}/ghaf-desert-sunset.jpg";
description = "Path to the wallpaper image";
};
frameColouring = lib.mkOption {
Expand Down

0 comments on commit cc52a30

Please sign in to comment.