simplify rofi script

This commit is contained in:
Griffin Smith 2020-04-08 23:23:49 -04:00
parent fae347ee0f
commit bf92d3b740

View file

@ -95,15 +95,13 @@ in {
''}";
# Launching applications
"${mod}+u" =
let rofi = pkgs.writeShellScript "rofi" ''
"${mod}+u" = "exec ${pkgs.writeShellScript "rofi" ''
rofi \
-modi 'combi' \
-combi-modi "window,drun,ssh,run" \
-font '${decorationFont}' \
-show combi
'';
in "exec ${rofi}";
''}";
# Passwords
"${mod}+p" = "exec rofi-pass -font '${decorationFont}'";