diff --git a/rofi/config.rasi b/rofi/config.rasi index a9439f9..2a3d737 100644 --- a/rofi/config.rasi +++ b/rofi/config.rasi @@ -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" diff --git a/rofi/paper-float.rasi b/rofi/paper-float.rasi index 3532973..89ab019 100644 --- a/rofi/paper-float.rasi +++ b/rofi/paper-float.rasi @@ -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]; }