don't wrap shell scripts in nix file

This commit is contained in:
Leonardo Eugênio 2022-10-18 12:37:14 -03:00
parent cdcdc90a10
commit 5422aea875
5 changed files with 147 additions and 52 deletions

View file

@ -299,4 +299,22 @@ in {
cache-pause-initial=true;
cache-pause-wait=10;
};
# My bemenu wrapper
xdg.configFile = {
"bmenu.conf".text = ''
set fn "${font.mono} ${toString font.size.small}"
set tb "${color.bg}${theme.opacityHex}"
set tf "${accent.color}"
set fb "${color.bg}${theme.opacityHex}"
set ff "${color.txt}"
set nb "${color.bg}${theme.opacityHex}"
set nf "${color.txt}"
set hb "${accent.color}"
set hf "${accent.fg}"
'';
};
}