use rofi instead of albert now
This commit is contained in:
parent
353cb14efa
commit
8da88a8ea5
1 changed files with 3 additions and 3 deletions
|
@ -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'";
|
||||
|
|
Loading…
Reference in a new issue