My personal dotfiles
0
fork

Configure Feed

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

feat: changed rofi config to adi1090x

legoraft 0ff48fb5 4d2a2998

+114 -60
+4 -4
rofi/.config/rofi/colors.rasi
··· 1 1 * { 2 - background: #4c566a99; 3 - foreground: #eceff4ff; 4 - dim: #eceff499; 5 - selected: #2e344099; 2 + background: #4c566a; 3 + background-alt: #434c5e; 4 + foreground: #eceff4; 5 + selected: #88c0d0; 6 6 }
+110 -56
rofi/.config/rofi/config.rasi
··· 1 1 configuration { 2 - modes: [ drun, calc ]; 2 + modes: [ drun ]; 3 3 show-icons: true; 4 - display-drun: " "; 5 - display-calc: "󰾞 "; 4 + display-drun: ""; 6 5 font: "Lato 16"; 7 6 drun-display-format: "{name}"; 8 7 } 9 8 10 9 @import "colors.rasi" 11 10 12 - * { 13 - border-color: none; 11 + window { 12 + transparency: "real"; 13 + location: center; 14 + anchor: center; 15 + fullscreen: false; 16 + width: 700px; 14 17 15 - background-color: transparent; 16 - normal-background: transparent; 17 - urgent-background: transparent; 18 - active-background: transparent; 19 - alternate-background: transparent; 20 - alternate-normal-background: transparent; 21 - alternate-urgent-background: transparent; 22 - alternate-active-background: transparent; 23 - selected-normal-background: var(selected); 24 - selected-urgent-background: var(selected); 25 - selected-active-background: var(selected); 26 - 27 - foreground-color: var(foreground); 28 - normal-foreground: var(foreground); 29 - urgent-foreground: var(foreground); 30 - active-foreground: var(foreground); 31 - alternate-foreground: var(foreground); 32 - alternate-normal-foreground: var(foreground); 33 - alternate-urgent-foreground: var(foreground); 34 - alternate-active-foreground: var(foreground); 35 - selected-normal-foreground: var(foreground); 36 - selected-urgent-foreground: var(foreground); 37 - selected-active-foreground: var(foreground); 18 + enabled: true; 19 + margin: 0; 20 + padding: 0; 21 + border: none; 22 + border-radius: 12px; 23 + background-color: @background; 38 24 } 39 25 40 - window { 41 - border-radius: 0.4em; 42 - background-color: var(background); 43 - } 44 - 45 - mainbox, prompt { 26 + mainbox { 27 + enabled: true; 28 + spacing: 10px; 29 + margin: 0; 30 + padding: 20px; 31 + border: none; 32 + border-radius: 0; 46 33 background-color: transparent; 47 - text-color: inherit; 48 - children: [ inputbar, message, listview ]; 34 + children: [ inputbar, listview ]; 49 35 } 50 36 51 37 inputbar { 52 - background-color: transparent; 53 - border-radius: 0.4em; 38 + enabled: true; 39 + spacing: 10px; 40 + margin: 0; 41 + padding: 15px; 42 + border-radius: 12px; 54 43 border: none; 55 - children: [ "prompt", "entry" ]; 56 - padding: 0.2em 0.4em; 57 - margin: 0.2em 0; 44 + background-color: @background-alt; 45 + text-color: @foreground; 46 + children: [ prompt, entry ]; 58 47 } 59 48 60 - entry { 61 - background-color: transparent; 62 - placeholder: "Type something..."; 63 - placeholder-color: var(dim); 49 + prompt { 50 + enabled: true; 51 + background-color: inherit; 64 52 text-color: inherit; 65 53 } 66 54 67 55 textbox-prompt-colon { 68 - str: ""; 56 + enabled: true; 57 + expand: false; 58 + str: "::"; 59 + background: inherit; 60 + text-color: inherit; 61 + } 62 + 63 + entry { 64 + enabled: true; 65 + background-color: inherit; 66 + text-color: inherit; 67 + placeholder: "Search..."; 68 + placeholder-color: inherit; 69 69 } 70 70 71 71 listview { 72 - background-color: transparent; 72 + enabled: true; 73 + columns: 2; 74 + lines: 8; 75 + cycle: true; 76 + dynamic: true; 73 77 scrollbar: false; 74 - spacing: 0.1em; 75 - lines: 10; 76 - border-radius: 0.4em; 78 + layout: vertical; 79 + reverse: false; 80 + fixed-height: true; 81 + fixed-columns: true; 82 + 83 + spacing: 5px; 84 + margin: 0; 85 + padding: 0; 77 86 border: none; 87 + border-radius: 0; 88 + background-color: transparent; 89 + text-color: @foreground; 78 90 } 79 91 80 92 element { 81 - padding: 0.25em 0.5em; 82 - border-radius: 0.4em; 93 + enabled: true; 94 + spacing: 10px; 95 + margin: 0; 96 + padding: 5px; 97 + border: none; 98 + border-radius: 12px; 99 + background-color: transparent; 100 + text-color: @foreground; 101 + cursor: pointer; 102 + } 103 + 104 + element normal.normal { 105 + background-color: @background; 106 + text-color: @foreground; 107 + } 108 + 109 + element selected.normal { 110 + background-color: @selected; 111 + text-color: @background; 112 + } 113 + 114 + element-icon { 83 115 background-color: transparent; 116 + text-color: inherit; 117 + size: 32px; 118 + cursor: inherit; 84 119 } 85 120 86 - message { 87 - border: none; 121 + element-text { 88 122 background-color: transparent; 89 - padding: 0; 90 - margin: 0; 123 + text-color: inherit; 124 + highlight: inherit; 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; 91 145 }