diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-13 13:45:22 +0100 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-03-13 13:45:22 +0100 | 
| commit | 7f9c2629c4eb416fcda906d6ad25457b7cff1e22 (patch) | |
| tree | 5c3ab3f4f6a8199ef84013db5936d452133e2945 /.config/rofi | |
| parent | 79d817546e4003d612c88ad298bf261158123298 (diff) | |
rofi themes and add zsh plugins for git and kubectl
Diffstat (limited to '.config/rofi')
| -rw-r--r-- | .config/rofi/themes/custom.rasi | 84 | ||||
| -rw-r--r-- | .config/rofi/themes/nord.rasi | 84 | 
2 files changed, 168 insertions, 0 deletions
diff --git a/.config/rofi/themes/custom.rasi b/.config/rofi/themes/custom.rasi new file mode 100644 index 0000000..f1ef187 --- /dev/null +++ b/.config/rofi/themes/custom.rasi @@ -0,0 +1,84 @@ +configuration { +  display-run: " "; +  display-drun: "  "; +  display-window: "  "; +  drun-display-format: "{icon} {name}"; +  modi: "window,run,drun"; +  show-icons: true; +} + +* { +  polar-1: #0f1419; +  polar-2: #1a232c; +  polar-3: #434C5E; +  polar-4: #4C566A; + +  snow-1: #D8DEE9; +  snow-2: #E5E9F0; +  snow-3: #ECEFF4; + +  frost-1: #d8d8d8; +  frost-2: #88C0D0; +  frost-3: #d8d8d8; +  frost-4: #5E81AC; + +  aurora-1: #BF616A; +  aurora-2: #D08770; +  aurora-3: #EBCB8B; +  aurora-4: #A3BE8C; +  aurora-5: #B48EAD; + +  background-color: @polar-1; +   +  border: 0; +  margin: 0; +  padding: 0; +  spacing: 0; +} + +inputbar { +  children: [prompt, entry]; +} + + +element { +  padding: 12; +  text-color: @frost-3; +  children: [element-icon, element-text]; +} + + +element-icon { +  size: 0.6em; +} + +element selected { +  text-color: @aurora-3; +} + +entry { +  background-color: @polar-2; +  padding: 12 0 12 3; +  text-color: @frost-1; +} + + +listview { +  columns: 1; +  lines: 8; +} + +mainbox { +  children: [inputbar, listview]; +} + +prompt { +  background-color: @polar-2; +  enabled: true; +  padding: 12 0 0 12; +  text-color: @frost-1; +} + +window { +  transparency: "real"; +} diff --git a/.config/rofi/themes/nord.rasi b/.config/rofi/themes/nord.rasi new file mode 100644 index 0000000..6a6f73f --- /dev/null +++ b/.config/rofi/themes/nord.rasi @@ -0,0 +1,84 @@ +configuration { +  display-run: " "; +  display-drun: "  "; +  display-window: "  "; +  drun-display-format: "{icon} {name}"; +  modi: "window,run,drun"; +  show-icons: true; +} + +* { +  polar-1: #2E3440; +  polar-2: #3B4252; +  polar-3: #434C5E; +  polar-4: #4C566A; + +  snow-1: #D8DEE9; +  snow-2: #E5E9F0; +  snow-3: #ECEFF4; + +  frost-1: #8FBCBB; +  frost-2: #88C0D0; +  frost-3: #81A1C1; +  frost-4: #5E81AC; + +  aurora-1: #BF616A; +  aurora-2: #D08770; +  aurora-3: #EBCB8B; +  aurora-4: #A3BE8C; +  aurora-5: #B48EAD; + +  background-color: @polar-1; +   +  border: 0; +  margin: 0; +  padding: 0; +  spacing: 0; +} + +inputbar { +  children: [prompt, entry]; +} + + +element { +  padding: 12; +  text-color: @frost-3; +  children: [element-icon, element-text]; +} + + +element-icon { +  size: 0.6em; +} + +element selected { +  text-color: @aurora-3; +} + +entry { +  background-color: @polar-2; +  padding: 12 0 12 3; +  text-color: @frost-1; +} + + +listview { +  columns: 1; +  lines: 8; +} + +mainbox { +  children: [inputbar, listview]; +} + +prompt { +  background-color: @polar-2; +  enabled: true; +  padding: 12 0 0 12; +  text-color: @frost-1; +} + +window { +  transparency: "real"; +}  |