diff options
-rw-r--r-- | .config/rofi/themes/custom.rasi | 84 | ||||
-rw-r--r-- | .config/rofi/themes/nord.rasi | 84 | ||||
-rw-r--r-- | .config/zsh/exports.zsh | 2 |
3 files changed, 170 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"; +} diff --git a/.config/zsh/exports.zsh b/.config/zsh/exports.zsh index 228cb84..ccfbd07 100644 --- a/.config/zsh/exports.zsh +++ b/.config/zsh/exports.zsh @@ -7,6 +7,8 @@ zle_highlight=('paste:none') plugins=( zsh-syntax-highlighting zsh-autosuggestions + git + kubectl ) autoload -U colors && colors |