diff options
author | Adam T. Carpenter <atc@53hor.net> | 2022-02-01 23:15:35 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2022-02-01 23:15:35 -0500 |
commit | 20130010d962581a2518590669e348288e4ebd4d (patch) | |
tree | 25587348d1427a0a29f07e3f1188435754d40f07 /.config/rofi | |
parent | 1725ce8a58704fbbb8a2c4b90ddca2af4fdf625a (diff) | |
download | dotfiles-20130010d962581a2518590669e348288e4ebd4d.tar.xz dotfiles-20130010d962581a2518590669e348288e4ebd4d.zip |
feat: rofi solarized
Diffstat (limited to '.config/rofi')
-rw-r--r-- | .config/rofi/config.rasi | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi new file mode 100644 index 0000000..00fc48b --- /dev/null +++ b/.config/rofi/config.rasi @@ -0,0 +1,29 @@ +configuration { + modi: "run,window,ssh"; + width: 25; + lines: 25; + columns: 1; + font: "Iosevka Etoile 14"; + bw: 5; + location: 0; + padding: 5; + yoffset: 0; + xoffset: 0; + fixed-num-lines: true; + terminal: "rofi-sensible-terminal"; + ssh-client: "ssh"; + ssh-command: "{terminal} -e {ssh-client} {host}"; + run-command: "{cmd}"; + parse-hosts: true; + matching: "normal"; + separator-style: "none"; + scrollbar-width: 0; + color-normal: "#002b37, #819396, #003643, #008ed4, #ffffff"; + color-urgent: "#002b37, #da4281, #003643, #008ed4, #890661"; + color-active: "#002b37, #008ed4, #003643, #008ed4, #66c6ff"; + color-window: "#002b37, #002b37, #003642"; + kb-mode-next: "Shift+Right,Control+Tab,Alt+l"; + kb-mode-previous: "Shift+Left,Control+Shift+Tab,Alt+h"; + kb-row-up: "Up,Control+p,Shift+Tab,Shift+ISO_Left_Tab,Alt+k"; + kb-row-down: "Down,Control+n,Alt+j"; +} |