My personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: added omarchy-like terminal config to rofi

legoraft 4ee6a81f d5bc7342

+150
+5
rofi/.config/rofi/styles/glassy-nord.rasi
··· 1 + * { 2 + background: #434c5e99; 3 + foreground: #eceff4; 4 + selected: #88c0d0; 5 + }
+145
rofi/.config/rofi/terminal.rasi
··· 1 + configuration { 2 + modes: [ drun ]; 3 + show-icons: true; 4 + display-drun: ""; 5 + font: "Lato 16"; 6 + drun-display-format: "{name}"; 7 + } 8 + 9 + @import "styles/glassy-nord.rasi" 10 + 11 + window { 12 + transparency: "real"; 13 + location: center; 14 + anchor: center; 15 + fullscreen: false; 16 + width: 700px; 17 + 18 + enabled: true; 19 + margin: 0; 20 + padding: 0; 21 + border: none; 22 + border-radius: 0; 23 + background-color: @background; 24 + } 25 + 26 + mainbox { 27 + enabled: true; 28 + spacing: 10px; 29 + margin: 0; 30 + padding: 20px; 31 + border: 2px; 32 + border-color: @selected; 33 + border-radius: 0; 34 + background-color: transparent; 35 + children: [ inputbar, listview ]; 36 + } 37 + 38 + inputbar { 39 + enabled: true; 40 + spacing: 10px; 41 + margin: 0; 42 + padding: 0; 43 + border-radius: 0; 44 + border: none; 45 + background-color: transparent; 46 + text-color: @foreground; 47 + children: [ prompt, entry ]; 48 + } 49 + 50 + prompt { 51 + enabled: true; 52 + background-color: transparent; 53 + text-color: inherit; 54 + } 55 + 56 + textbox-prompt-colon { 57 + enabled: true; 58 + expand: false; 59 + str: "::"; 60 + background: transparent; 61 + text-color: inherit; 62 + } 63 + 64 + entry { 65 + enabled: true; 66 + background-color: transparent; 67 + text-color: inherit; 68 + placeholder: "Start..."; 69 + placeholder-color: inherit; 70 + } 71 + 72 + listview { 73 + enabled: true; 74 + lines: 6; 75 + cycle: true; 76 + dynamic: true; 77 + scrollbar: false; 78 + layout: vertical; 79 + reverse: false; 80 + fixed-height: true; 81 + fixed-columns: true; 82 + 83 + spacing: 5px; 84 + margin: 0; 85 + padding: 10px; 86 + border: none; 87 + border-radius: 0; 88 + background-color: transparent; 89 + text-color: @foreground; 90 + } 91 + 92 + element { 93 + enabled: true; 94 + spacing: 10px; 95 + margin: 0; 96 + padding: 5px; 97 + border: none; 98 + border-radius: 0; 99 + background-color: transparent; 100 + text-color: @foreground; 101 + cursor: pointer; 102 + } 103 + 104 + element normal.normal, element alternate.normal { 105 + background-color: transparent; 106 + text-color: @foreground; 107 + } 108 + 109 + element selected.normal { 110 + background-color: transparent; 111 + text-color: @selected; 112 + } 113 + 114 + element-icon { 115 + background-color: transparent; 116 + text-color: inherit; 117 + size: 32px; 118 + cursor: inherit; 119 + } 120 + 121 + element-text { 122 + background-color: transparent; 123 + text-color: inherit; 124 + highlight: @foreground; 125 + cursor: inherit; 126 + vertical-align: 0.5; 127 + horizontal-align: 0.0; 128 + } 129 + 130 + error-message { 131 + padding: 15px; 132 + border: 2px solid; 133 + border-radius: 12px; 134 + border-color: @selected; 135 + background-color: @background; 136 + text-color: @foreground; 137 + } 138 + 139 + textbox { 140 + background-color: @background; 141 + text-color: @foreground; 142 + vertical-align: 0.5; 143 + horizontal-align: 0.0; 144 + highlight: none; 145 + }