29 lines
806 B
Bash
Executable File
29 lines
806 B
Bash
Executable File
fileout="$HOME/.config/rofi/config.rasi"
|
|
|
|
printf "
|
|
*{
|
|
background: $(echo $color0)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;
|
|
}
|
|
|
|
configuration {
|
|
kb-row-up: \"Up,Control+k,Shift+Tab,Shift+ISO_Left_Tab\";
|
|
kb-row-down: \"Down,Control+j\";
|
|
kb-accept-entry: \"Control+m,Return,KP_Enter\";
|
|
terminal: \"mate-terminal\";
|
|
kb-remove-to-eol: \"Control+Shift+e\";
|
|
/*kb-mode-next: \"Shift+Right,Control+Tab,Control+l\";*/
|
|
kb-mode-previous: \"Shift+Left,Control+Shift+Tab,Control+h\";
|
|
kb-remove-char-back: \"BackSpace\";
|
|
}" > "$fileout"
|