From 8da88a8ea5ae1d0611ea83d0d1bd42361dc57556 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Fri, 19 Apr 2024 20:27:25 +0200 Subject: [PATCH] use rofi instead of albert now --- nixos/homes/palo/i3.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/homes/palo/i3.nix b/nixos/homes/palo/i3.nix index b70397a..fedc0d2 100644 --- a/nixos/homes/palo/i3.nix +++ b/nixos/homes/palo/i3.nix @@ -258,7 +258,7 @@ in set -o pipefail ${pkgs.i3}/bin/i3-msg -t get_workspaces | \ ${pkgs.jq}/bin/jq --raw-output '.[] | .name' | \ - ${pkgs.rofi}/bin/rofi -dmenu -p 'Select Workspace' | \ + ${pkgs.rofi}/bin/rofi -dmenu -p 'Select Workspace ' | \ while read line do ${pkgs.i3}/bin/i3-msg workspace "$line" @@ -274,7 +274,7 @@ in set -o pipefail ${pkgs.i3}/bin/i3-msg -t get_workspaces | \ ${pkgs.jq}/bin/jq --raw-output '.[] | .name' | \ - ${pkgs.rofi}/bin/rofi -dmenu -p 'Move to Workspace' | \ + ${pkgs.rofi}/bin/rofi -dmenu -p 'Move to Workspace ' | \ while read line do ${pkgs.i3}/bin/i3-msg move container to workspace "$line" @@ -283,7 +283,7 @@ in in "exec ${script}"; - "${cfg.config.modifier}+space" = "exec ${pkgs.rofi}/bin/rofi -show drun"; + "${cfg.config.modifier}+space" = "exec ${pkgs.rofi}/bin/rofi -show drun -display-drun ''"; "${cfg.config.modifier}+Shift+c" = "reload"; "${cfg.config.modifier}+Shift+r" = "restart"; "${cfg.config.modifier}+Shift+e" = "exec i3-nagbar -t warning -m 'Do you want to exit i3?' -b 'Yes' 'i3-msg exit'";