rofi: window: strict colums

This commit is contained in:
He4eT 2023-11-13 21:34:53 +01:00
commit 733b273ea1
2 changed files with 23 additions and 16 deletions

View file

@ -1,4 +1,8 @@
configuration {
font: "NotoSans-Regular 11";
/* fc-list for full list */
/* fc-match for check */
font: "Noto Sans 11";
window-format: "{w}	{c}	{t}";
}
@theme "./paper-float.rasi"

View file

@ -1,3 +1,5 @@
/* https://davatorium.github.io/rofi/current/rofi-theme.5/#layout */
* {
bg: #222222;
fg: #cdcdcd;
@ -11,16 +13,20 @@
text-color: @fg;
}
element-text {
background-color: inherit;
text-color: inherit;
highlight: bold;
}
#window {
border: @border-width;
width: 800px;
height: 496px;
height: 518px;
}
#inputbar {
padding: @inner-padding;
children: [ prompt, textbox-prompt-colon, entry, case-indicator ];
}
#textbox-prompt-colon {
expand: false;
str: ": ";
}
#element {
@ -36,12 +42,9 @@ element-text {
background-color: @selection;
}
#inputbar {
padding: @inner-padding;
children: [ prompt, textbox-prompt-colon, entry, case-indicator ];
}
textbox-prompt-colon {
expand: false;
str: ": ";
#element-text {
background-color: inherit;
text-color: inherit;
highlight: bold;
tab-stops: [50px, 200px];
}