users/ryan/zen/zenProfile.nix
06f4083f0d8f521dfde6e1961de8354b6df4a92e
· 2.1 KB · 71 lines
raw
| 1 | rec { |
| 2 | settings = { |
| 3 | "zen.welcome-screen.seen" = true; |
| 4 | "zen.urlbar.behavior" = "float"; |
| 5 | "zen.view.compact.enable-at-startup"= true; |
| 6 | "zen.view.use-single-toolbar"= false; |
| 7 | "zen.view.window.scheme"= 0; |
| 8 | }; |
| 9 | |
| 10 | pinsForce = true; |
| 11 | pins = { |
| 12 | "Discord" = { |
| 13 | id = "59d28a80-d185-4dec-92cb-6da549cdfd27"; |
| 14 | workspace = spaces."Personal".id; |
| 15 | url = "https://discord.com/channels/@me"; |
| 16 | position = 101; |
| 17 | isEssential = true; |
| 18 | }; |
| 19 | "RSS" = { |
| 20 | id = "0fa25825-01f2-49ce-b8a2-80f1100e782c"; |
| 21 | workspace = spaces."Personal".id; |
| 22 | url = "https://rss.ryan77627.xyz"; |
| 23 | position = 102; |
| 24 | isEssential = true; |
| 25 | }; |
| 26 | }; |
| 27 | |
| 28 | spacesForce = true; |
| 29 | spaces = { |
| 30 | "Personal" = { |
| 31 | id = "2392f396-2548-4a20-9fb8-a3e940be4a58"; |
| 32 | #icon = ""; |
| 33 | position = 1000; |
| 34 | theme = { |
| 35 | type = "gradient"; |
| 36 | colors = [ |
| 37 | { |
| 38 | red = 199; |
| 39 | green = 161; |
| 40 | blue = 247; |
| 41 | algorithm = "complementary"; |
| 42 | type = "explicit-lightness"; |
| 43 | lightness = 80; |
| 44 | #isPrimary = true; |
| 45 | } |
| 46 | # { |
| 47 | # red = 157; |
| 48 | # green = 251; |
| 49 | # blue = 194; |
| 50 | # algorithm = "splitComplimentary"; |
| 51 | # type = "explicit-lightness"; |
| 52 | # lightness = 80; |
| 53 | # isPrimary = false; |
| 54 | # } |
| 55 | # { |
| 56 | # red = 161; |
| 57 | # green = 243; |
| 58 | # blue = 247; |
| 59 | # algorithm = "splitComplimentary"; |
| 60 | # type = "explicit-lightness"; |
| 61 | # lightness = 80; |
| 62 | # isPrimary = false; |
| 63 | # } |
| 64 | ]; |
| 65 | opacity = 0.419; |
| 66 | texture = 0.3125; |
| 67 | }; |
| 68 | }; |
| 69 | }; |
| 70 | } |
| 71 |