Skip to content

Commit a4e5738

Browse files
committed
home: replace filebrowser with power menu
It seems, that icon doesn't work. Created ticket for that: jluttine/rofi-power-menu#29.
1 parent 80b9aa2 commit a4e5738

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

home-manager/desktop/hyprland/launcher.nix

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
{ custom, config, pkgs, ... }:
22

33
{
4+
home.packages = with pkgs; [
5+
rofi-power-menu
6+
];
7+
48
programs.rofi = {
59
enable = true;
610
cycle = false;
711
package = pkgs.rofi-wayland;
812
font = "${custom.font}" + " 14";
913
terminal = "kitty";
1014
extraConfig = {
11-
modi = "drun,filebrowser,window,run";
15+
modi = "drun,window,run,power-menu:rofi-power-menu";
1216
show-icons = true;
1317
display-drun = "";
1418
display-run = "";
15-
display-filebrowser = "";
19+
display-power-menu = "";
1620
display-window = "";
1721
drun-display-format = "{name}";
1822
window-format = "{w}{t}";

home-manager/home.nix

-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ in
4646
sway-contrib.grimshot
4747
swayimg
4848
hyprpicker
49-
50-
# (catppuccin-kvantum.override {
51-
# accent = "Lavender";
52-
# variant = "Mocha";
53-
# })
5449
];
5550

5651
xdg.enable = true;

0 commit comments

Comments
 (0)