diff options
Diffstat (limited to '.config')
| -rw-r--r-- | .config/rofi/config.rasi | 78 | ||||
| -rw-r--r-- | .config/terminator/config | 27 |
2 files changed, 105 insertions, 0 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..58fb98a --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,78 @@ +configuration { + display-drun: "Applications:"; + display-window: "Windows:"; + drun-display-format: "{name}"; + font: "UbuntuMono Nerd Font Medium 10"; + modi: "window,run,drun"; +} + +@theme "/dev/null" + +* { + bg: #131417; + bg-alt: #1e1f26; + + fg: #d3d7f2; + fg-alt: #787c99; + + background-color: @bg; + + border: 0; + margin: 0; + padding: 0; + spacing: 0; +} + +window { + width: 30%; +} + +element { + padding: 8 0; + text-color: @fg-alt; +} + +element selected { + text-color: @fg; +} + +element-text { + text-color: inherit; + vertical-align: 0.5; +} + +element-icon { + size: 14; + padding: 0 10 0 0; +} + +entry { + background-color: @bg-alt; + padding: 12; + text-color: @fg; +} + +inputbar { + children: [prompt, entry]; +} + +listview { + padding: 8 12; + background-color: @bg; + columns: 1; + lines: 8; +} + +mainbox { + background-color: @bg; + children: [inputbar, listview]; +} + +prompt { + background-color: @bg-alt; + enabled: true; + padding: 12 0 0 12; + text-color: @fg; +} + +/* vim: ft=sass diff --git a/.config/terminator/config b/.config/terminator/config new file mode 100644 index 0000000..89de990 --- /dev/null +++ b/.config/terminator/config @@ -0,0 +1,27 @@ +[global_config] + focus = mouse +[keybindings] + split_horiz = <Shift><Alt>Down + split_vert = <Shift><Alt>Right + close_term = <Alt>c +[profiles] + [[default]] + background_darkness = 0.8 + background_type = transparent + cursor_shape = ibeam + cursor_color = "#aaaaaa" + font = UbuntuMono Nerd Font Mono 10 + show_titlebar = False + scrollbar_position = hidden + scrollback_infinite = True + use_system_font = False + use_theme_colors = True +[layouts] + [[default]] + [[[window0]]] + type = Window + parent = "" + [[[child1]]] + type = Terminal + parent = window0 +[plugins] |
