summaryrefslogtreecommitdiff
path: root/home-config/nix-home-manager/zenProfile.nix
blob: e10cda689585c497631f767391797d8ca347d4f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
rec {
    settings = {
        "zen.welcome-screen.seen" = true;
        "zen.urlbar.behavior" = "float";
        "zen.view.compact.enable-at-startup"= true;
        "zen.view.use-single-toolbar"= false;
        "zen.view.window.scheme"= 0;
    };

    pinsForce = true;
    pins = {
        "Discord" = {
            id = "59d28a80-d185-4dec-92cb-6da549cdfd27";
            workspace = spaces."Personal".id;
            url = "https://discord.com/channels/@me";
            position = 101;
            isEssential = true;
        };
        "RSS" = {
            id = "0fa25825-01f2-49ce-b8a2-80f1100e782c";
            workspace = spaces."Personal".id;
            url = "https://rss.ryan77627.xyz";
            position = 102;
            isEssential = true;
        };
    };

    spacesForce = true;
    spaces = {
        "Personal" = {
            id = "2392f396-2548-4a20-9fb8-a3e940be4a58";
            #icon = "";
            position = 1000;
            theme = {
                type = "gradient";
                colors = [
                    {
                    red = 199;
                    green = 161;
                    blue = 247;
                    algorithm = "complementary";
                    type = "explicit-lightness";
                    lightness = 80;
                    #isPrimary = true;
                    }
                    # {
                    # red = 157;
                    # green = 251;
                    # blue = 194;
                    # algorithm = "splitComplimentary";
                    # type = "explicit-lightness";
                    # lightness = 80;
                    # isPrimary = false;
                    # }
                    # {
                    # red = 161;
                    # green = 243;
                    # blue = 247;
                    # algorithm = "splitComplimentary";
                    # type = "explicit-lightness";
                    # lightness = 80;
                    # isPrimary = false;
                    # }
                ];
                opacity = 0.419;
                texture = 0.3125;
            };
        };
    };
}