Make power menu functional

inky
Elnu 2 years ago
parent 806d8c41df
commit 12ffd6521d

@ -16,6 +16,7 @@
- Fix/map media keys (already declared within [`i3.nix`](i3.nix) but are non-functional
- Fix kitty bell disable not working
- Fix Nordic GTK theme icons not working in nautilus
- Add `wmctrl` as an explicit dependency of `rofi-power` instead of `rofi/default.nix`
- i3lock
- Fix i3lock running restarting on i3 restart
- Add `i3lock-colors` as an explicit dependency of `lock` instead of `i3.nix`

@ -3,6 +3,7 @@
{
home.packages = with pkgs; [
(pkgs.callPackage ./power.nix { })
wmctrl # TODO: add as dependency of rofi-power
];
programs.rofi = {
enable = true;

@ -1,9 +1,9 @@
{ substituteAll }:
{ pkgs, substituteAll }:
substituteAll {
name = "rofi-power";
src = ./power.sh;
inherit = wmctrl;
dir = "bin";
isExecutable = true;
}

Loading…
Cancel
Save