this repo has no description
0
fork

Configure Feed

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

:sparkles: (Firefox) configuration

+48 -432
+24 -217
home/firefox/README.org
··· 32 32 33 33 *** Bookmarks 34 34 #+begin_src nix 35 - bookmarks = [ 36 - { 37 - name = "Nix sites"; 38 - bookmarks = [ 39 - { 40 - name = "homepage"; 41 - url = "https://nixos.org/"; 42 - } 43 - { 44 - name = "wiki"; 45 - tags = [ "wiki" "nix" ]; 46 - url = "https://nixos.wiki/"; 47 - } 48 - { 49 - name = "Home Manager"; 50 - tags = [ "nix" ]; 51 - url = "https://nix-community.github.io/home-manager/options.html"; 52 - } 53 - ]; 54 - } 55 - ]; 35 + bookmarks = { 36 + force = true; 37 + settings = [ 38 + { 39 + name = "Nix sites"; 40 + bookmarks = [ 41 + { 42 + name = "homepage"; 43 + url = "https://nixos.org/"; 44 + } 45 + { 46 + name = "wiki"; 47 + tags = [ "wiki" "nix" ]; 48 + url = "https://nixos.wiki/"; 49 + } 50 + { 51 + name = "Home Manager"; 52 + tags = [ "nix" ]; 53 + url = "https://nix-community.github.io/home-manager/options.html"; 54 + } 55 + ]; 56 + } 57 + ]; 58 + }; 56 59 #+end_src 57 60 58 61 *** Search ··· 85 88 86 89 "Google".metaData.alias = "@g"; 87 90 }; 88 - #+end_src 89 - *** Custom style 90 - #+begin_src nix 91 - userChrome = '' 92 - /*===KeyFox by AlfarexGuy2019===*/ 93 - 94 - /*===COLORS===*/ 95 - 96 - :root { 97 - --accent-color: 45, 45, 45; 98 - --tab-color: 240, 240, 244; 99 - --tab-text-color: 255, 255, 255; 100 - --secondary-accent-color: 127,127,127; 101 - --second-tab-text-color: 127,127,127; 102 - --third-accent-color: 235, 219, 178; 103 - --light-color: 255, 255, 255; 104 - --dark-color: 0, 0, 0; 105 - --url-back: 249, 249, 251; 106 - --caption-min-color: 215, 153, 33; 107 - --caption-max-color: 69, 133, 136; 108 - --caption-close-color: 177, 98, 134; 109 - } 110 - 111 - 112 - /* MIN MAX CLOSE Remove */ 113 - #TabsToolbar > .titlebar-buttonbox-container { 114 - visibility: collapse !important;} 115 - 116 - /*Basic Settings*/ 117 - 118 - 119 - :root { 120 - --navbarWidth : 40vw; /* Set width of navbar. Use px for a fixed width 121 - or vw for a percentage of your window. */ 122 - --animationSpeed : 0.5s; 123 - } 124 - 125 - 126 - #TabsToolbar { 127 - margin-left : var(--navbarWidth) !important; 128 - } 129 - 130 - #nav-bar { 131 - margin-right: calc(100vw - var(--navbarWidth)) !important; 132 - } 133 - 134 - #urlbar-container { 135 - min-width : 0px !important; 136 - } 137 - 138 - :root[uidensity="compact"] #nav-bar { 139 - margin-top : -37px !important; 140 - height : 37px !important; 141 - } 142 - 143 - :root:not([uidensity="compact"]):not([uidensity="touch"]) #nav-bar { 144 - margin-top : -44px !important; 145 - height : 44px !important; 146 - } 147 - 148 - :root[uidensity="touch"] #nav-bar { 149 - margin-top : -49px !important; 150 - height : 49px !important; 151 - } 152 - 153 - 154 - /* Back Hide */ 155 - #back-button[disabled="true"] { display: none !important } 156 - 157 - /* Forward Hide */ 158 - #forward-button[disabled="true"] { display: none !important } 159 - 160 - /* Site information button */ 161 - #identity-box { display: none !important } 162 - 163 - /* "Shield" icon */ 164 - #tracking-protection-icon-container { display: none !important } 165 - 166 - 167 - /* Simplifying interface */ 168 - 169 - #nav-bar { 170 - background : none !important; 171 - box-shadow : none !important; 172 - } 173 - 174 - #navigator-toolbox { 175 - border : none !important; 176 - } 177 - 178 - .titlebar-spacer { 179 - display : none !important; 180 - } 181 - 182 - #urlbar-background { 183 - border : none !important; 184 - } 185 - 186 - #urlbar:not(:hover):not([breakout][breakout-extend]) > #urlbar-background { 187 - box-shadow : none !important; 188 - background : none !important; 189 - } 190 - 191 - 192 - /* Element Hiding stuff */ 193 - 194 - .urlbar-icon, #userContext-indicator, #userContext-label { 195 - fill : transparent !important; 196 - background : transparent !important; 197 - color : transparent !important; 198 - } 199 - 200 - #urlbar:hover .urlbar-icon, 201 - #urlbar:active .urlbar-icon, 202 - #urlbar[focused] .urlbar-icon { 203 - fill : var(--toolbar-color) !important; 204 - } 205 - 206 - /*================== TABS BAR ==================*/ 207 - 208 - #titlebar #TabsToolbar { 209 - background: rgba(var(--dark-color), 1) !important; 210 - } 211 - 212 - 213 - #PersonalToolbar { 214 - background: rgba(var(--dark-color), 1) !important; 215 - color: rgba(var(--light-color), 1) !important; 216 - padding-bottom: 6px !important; 217 - padding-top: 1px !important; 218 - } 219 - 220 - toolbar#nav-bar { 221 - background: rgba(var(--dark-color), 1) !important; 222 - box-shadow: none !important; 223 - padding-bottom: 4px !important; 224 - } 225 - 226 - /*================ DARK THEME ================*/ 227 - :root:-moz-lwtheme-brighttext, 228 - .sidebar-panel[lwt-sidebar-brighttext], 229 - body[lwt-sidebar-brighttext] { 230 - --main-bgcolor: var(--dark-color); 231 - --transparent-bgcolor: var(--dark-color); 232 - } 233 - 234 - tab[selected="true"] .tab-content { 235 - color: rgba(var(--secondary-accent-color), 1) !important; 236 - } 237 - 238 - tab[selected="true"] .tab-background { 239 - background: rgba(var(--accent-color), 1) !important; 240 - } 241 - .tabbrowser-tab>.tab-stack>.tab-background:not([selected="true"]) { 242 - transition: all 0.3s ease !important; 243 - } 244 - 245 - .tabbrowser-tab:hover>.tab-stack>.tab-background:not([selected="true"]) { 246 - background-color: rgba(var(--transparent-bgcolor), 0.7) !important; 247 - } 248 - 249 - .tab-line { 250 - height: 0px !important; 251 - } 252 - 253 - .tabbrowser-tab { 254 - margin-right: 5px !important; 255 - } 256 - 257 - .tabbrowser-tab:not([visuallyselected="true"]), 258 - .tabbrowser-tab:-moz-lwtheme { 259 - color: rgba(var(--second-tab-text-color), 1) !important; 260 - } 261 - 262 - tab[selected="true"] .tab-content { 263 - color: rgba(var(--tab-text-color), 1) !important; 264 - } 265 - 266 - tab[selected="true"] .tab-background { 267 - background: rgba(var(--accent-color), 1) !important; 268 - } 269 - 270 - .tabbrowser-tab::after, 271 - .tabbrowser-tab::before { 272 - border-left: 0 !important; 273 - opacity: 0 !important; 274 - } 275 - 276 - .tab-close-button { 277 - transition: all 0.3s ease !important; 278 - border-radius: 4px !important; 279 - } 280 - 281 - .tabbrowser-tab .tab-label { color: var(--uc-inverted-colour) !important; } 282 - .tab-close-button { fill: var(--uc-inverted-colour) !important } 283 - ''; 284 91 #+end_src 285 92 286 93 #+begin_src nix
+24 -215
home/firefox/default.nix
··· 12 12 "findbar.highlightAll" = true; 13 13 }; 14 14 15 - bookmarks = [ 16 - { 17 - name = "Nix sites"; 18 - bookmarks = [ 19 - { 20 - name = "homepage"; 21 - url = "https://nixos.org/"; 22 - } 23 - { 24 - name = "wiki"; 25 - tags = ["wiki" "nix"]; 26 - url = "https://nixos.wiki/"; 27 - } 28 - { 29 - name = "Home Manager"; 30 - tags = ["nix"]; 31 - url = "https://nix-community.github.io/home-manager/options.html"; 32 - } 33 - ]; 34 - } 35 - ]; 15 + bookmarks = { 16 + force = true; 17 + settings = [ 18 + { 19 + name = "Nix sites"; 20 + bookmarks = [ 21 + { 22 + name = "homepage"; 23 + url = "https://nixos.org/"; 24 + } 25 + { 26 + name = "wiki"; 27 + tags = ["wiki" "nix"]; 28 + url = "https://nixos.wiki/"; 29 + } 30 + { 31 + name = "Home Manager"; 32 + tags = ["nix"]; 33 + url = "https://nix-community.github.io/home-manager/options.html"; 34 + } 35 + ]; 36 + } 37 + ]; 38 + }; 36 39 37 40 search.engines = { 38 41 "Nix Packages" = { ··· 78 81 79 82 "Google".metaData.alias = "@g"; 80 83 }; 81 - 82 - userChrome = '' 83 - /*===KeyFox by AlfarexGuy2019===*/ 84 - 85 - /*===COLORS===*/ 86 - 87 - :root { 88 - --accent-color: 45, 45, 45; 89 - --tab-color: 240, 240, 244; 90 - --tab-text-color: 255, 255, 255; 91 - --secondary-accent-color: 127,127,127; 92 - --second-tab-text-color: 127,127,127; 93 - --third-accent-color: 235, 219, 178; 94 - --light-color: 255, 255, 255; 95 - --dark-color: 0, 0, 0; 96 - --url-back: 249, 249, 251; 97 - --caption-min-color: 215, 153, 33; 98 - --caption-max-color: 69, 133, 136; 99 - --caption-close-color: 177, 98, 134; 100 - } 101 - 102 - 103 - /* MIN MAX CLOSE Remove */ 104 - #TabsToolbar > .titlebar-buttonbox-container { 105 - visibility: collapse !important;} 106 - 107 - /*Basic Settings*/ 108 - 109 - 110 - :root { 111 - --navbarWidth : 40vw; /* Set width of navbar. Use px for a fixed width 112 - or vw for a percentage of your window. */ 113 - --animationSpeed : 0.5s; 114 - } 115 - 116 - 117 - #TabsToolbar { 118 - margin-left : var(--navbarWidth) !important; 119 - } 120 - 121 - #nav-bar { 122 - margin-right: calc(100vw - var(--navbarWidth)) !important; 123 - } 124 - 125 - #urlbar-container { 126 - min-width : 0px !important; 127 - } 128 - 129 - :root[uidensity="compact"] #nav-bar { 130 - margin-top : -37px !important; 131 - height : 37px !important; 132 - } 133 - 134 - :root:not([uidensity="compact"]):not([uidensity="touch"]) #nav-bar { 135 - margin-top : -44px !important; 136 - height : 44px !important; 137 - } 138 - 139 - :root[uidensity="touch"] #nav-bar { 140 - margin-top : -49px !important; 141 - height : 49px !important; 142 - } 143 - 144 - 145 - /* Back Hide */ 146 - #back-button[disabled="true"] { display: none !important } 147 - 148 - /* Forward Hide */ 149 - #forward-button[disabled="true"] { display: none !important } 150 - 151 - /* Site information button */ 152 - #identity-box { display: none !important } 153 - 154 - /* "Shield" icon */ 155 - #tracking-protection-icon-container { display: none !important } 156 - 157 - 158 - /* Simplifying interface */ 159 - 160 - #nav-bar { 161 - background : none !important; 162 - box-shadow : none !important; 163 - } 164 - 165 - #navigator-toolbox { 166 - border : none !important; 167 - } 168 - 169 - .titlebar-spacer { 170 - display : none !important; 171 - } 172 - 173 - #urlbar-background { 174 - border : none !important; 175 - } 176 - 177 - #urlbar:not(:hover):not([breakout][breakout-extend]) > #urlbar-background { 178 - box-shadow : none !important; 179 - background : none !important; 180 - } 181 - 182 - 183 - /* Element Hiding stuff */ 184 - 185 - .urlbar-icon, #userContext-indicator, #userContext-label { 186 - fill : transparent !important; 187 - background : transparent !important; 188 - color : transparent !important; 189 - } 190 - 191 - #urlbar:hover .urlbar-icon, 192 - #urlbar:active .urlbar-icon, 193 - #urlbar[focused] .urlbar-icon { 194 - fill : var(--toolbar-color) !important; 195 - } 196 - 197 - /*================== TABS BAR ==================*/ 198 - 199 - #titlebar #TabsToolbar { 200 - background: rgba(var(--dark-color), 1) !important; 201 - } 202 - 203 - 204 - #PersonalToolbar { 205 - background: rgba(var(--dark-color), 1) !important; 206 - color: rgba(var(--light-color), 1) !important; 207 - padding-bottom: 6px !important; 208 - padding-top: 1px !important; 209 - } 210 - 211 - toolbar#nav-bar { 212 - background: rgba(var(--dark-color), 1) !important; 213 - box-shadow: none !important; 214 - padding-bottom: 4px !important; 215 - } 216 - 217 - /*================ DARK THEME ================*/ 218 - :root:-moz-lwtheme-brighttext, 219 - .sidebar-panel[lwt-sidebar-brighttext], 220 - body[lwt-sidebar-brighttext] { 221 - --main-bgcolor: var(--dark-color); 222 - --transparent-bgcolor: var(--dark-color); 223 - } 224 - 225 - tab[selected="true"] .tab-content { 226 - color: rgba(var(--secondary-accent-color), 1) !important; 227 - } 228 - 229 - tab[selected="true"] .tab-background { 230 - background: rgba(var(--accent-color), 1) !important; 231 - } 232 - .tabbrowser-tab>.tab-stack>.tab-background:not([selected="true"]) { 233 - transition: all 0.3s ease !important; 234 - } 235 - 236 - .tabbrowser-tab:hover>.tab-stack>.tab-background:not([selected="true"]) { 237 - background-color: rgba(var(--transparent-bgcolor), 0.7) !important; 238 - } 239 - 240 - .tab-line { 241 - height: 0px !important; 242 - } 243 - 244 - .tabbrowser-tab { 245 - margin-right: 5px !important; 246 - } 247 - 248 - .tabbrowser-tab:not([visuallyselected="true"]), 249 - .tabbrowser-tab:-moz-lwtheme { 250 - color: rgba(var(--second-tab-text-color), 1) !important; 251 - } 252 - 253 - tab[selected="true"] .tab-content { 254 - color: rgba(var(--tab-text-color), 1) !important; 255 - } 256 - 257 - tab[selected="true"] .tab-background { 258 - background: rgba(var(--accent-color), 1) !important; 259 - } 260 - 261 - .tabbrowser-tab::after, 262 - .tabbrowser-tab::before { 263 - border-left: 0 !important; 264 - opacity: 0 !important; 265 - } 266 - 267 - .tab-close-button { 268 - transition: all 0.3s ease !important; 269 - border-radius: 4px !important; 270 - } 271 - 272 - .tabbrowser-tab .tab-label { color: var(--uc-inverted-colour) !important; } 273 - .tab-close-button { fill: var(--uc-inverted-colour) !important } 274 - ''; 275 84 }; 276 85 }; 277 86 }