18 lines
397 B
Bash
Executable File
18 lines
397 B
Bash
Executable File
fileout="$HOME/.config/rofi/config.rasi"
|
|
|
|
printf "
|
|
*{
|
|
background: $(echo $background)e0;
|
|
alternate-normal-background: #00000000;
|
|
normal-background: #00000000;
|
|
selected-normal-background: $(echo $color5)ff;
|
|
foreground: $(echo $color14);
|
|
selected-normal-foreground: $(echo $color0)ff;
|
|
separatorcolor: #00000000;
|
|
spacing: 2;
|
|
}
|
|
|
|
window {
|
|
border: 0;
|
|
}" > "$fileout"
|