My personal dotfiles
0
fork

Configure Feed

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

feat: changed list and input style

+41
+1
rofi/.config/rofi/colors.rasi
··· 1 1 * { 2 2 background: #4c566a99; 3 3 foreground: #eceff4ff; 4 + dim: #eceff499; 4 5 selected: #2e344099; 5 6 }
+40
rofi/.config/rofi/config.rasi
··· 37 37 selected-active-foreground: var(foreground); 38 38 } 39 39 40 + window { 41 + transparency: "real"; 42 + border-radius: 0.4em; 43 + } 44 + 45 + mainbox, prompt { 46 + background-color: transparent; 47 + text-color: inherit; 48 + } 49 + 50 + inputbar { 51 + background-color: transparent; 52 + border-radius: 0.4em; 53 + children: [ "prompt", "entry" ]; 54 + padding: 0.2em 0.4em; 55 + } 56 + 57 + entry { 58 + background-color: transparent; 59 + placeholder: "Search..."; 60 + placeholder-color: var(dim); 61 + text-color: inherit; 62 + } 63 + 40 64 textbox-prompt-colon { 41 65 str: ""; 42 66 } 67 + 68 + listview { 69 + background-color: transparent; 70 + scrollbar: false; 71 + spacing: 0.1em; 72 + border-radius: 0.4em; 73 + } 74 + 75 + element { 76 + padding: 0.25em 0.5em; 77 + border-radius: 0.4em; 78 + } 79 + 80 + element normal.normal, element alternate.normal { 81 + background-color: transparent; 82 + }