Skip to content

Commit 613468c

Browse files
authored
Merge branch 'noctalia-dev:main' into main
2 parents d4c4ec4 + 6b48834 commit 613468c

391 files changed

Lines changed: 30358 additions & 11959 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Add screenshots if applicable.
2525
- Distro: [e.g., CachyOS, NixOS, Arch, ...]
2626
- Compositor: [ e.g., Hyprland, Niri, ...]
2727
- Noctalia-shell Version: [e.g., 1.0.0, available in About tab]
28+
- Noctalia QS Version: [e.g., 0.0.4, please check your package manager]
2829
- Monitor resolution: [e.g., 1920x1080]
2930

3031
### Additional Context

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
<!-- If this is a color scheme PR, please create it in https://github.com/noctalia-dev/noctalia-colorschemes instead -->
44

5+
If this PR is not ready for review yet, please mark it as **Draft** until it's good to be reviewed.
6+
57
## Motivation
68
Provide a clear and concise explanation of what this PR does and why it is needed.
79

.github/workflows/cachix.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: cachix
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
workflow_run:
8+
workflows: ["update flake"]
9+
types:
10+
- completed
11+
branches:
12+
- main
13+
workflow_dispatch:
14+
15+
jobs:
16+
cache:
17+
runs-on: ubuntu-latest
18+
if: ${{ github.repository == 'noctalia-dev/noctalia-shell' }}
19+
steps:
20+
- uses: actions/checkout@v6
21+
- uses: cachix/install-nix-action@v31
22+
- uses: cachix/cachix-action@v17
23+
with:
24+
name: "${{ secrets.CACHIX_CACHE_NAME }}"
25+
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
26+
- run: nix build .

.github/workflows/update-flake.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: update flake
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *" # daily
6+
workflow_dispatch:
7+
8+
jobs:
9+
update:
10+
runs-on: ubuntu-latest
11+
if: ${{ github.repository == 'noctalia-dev/noctalia-shell' }}
12+
permissions:
13+
contents: write
14+
steps:
15+
- uses: actions/checkout@v6
16+
- uses: DeterminateSystems/nix-installer-action@main
17+
- run: nix flake update
18+
- uses: stefanzweifel/git-auto-commit-action@v7
19+
with:
20+
commit_message: "chore(flake): update flake.lock"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ __pycache__
88
result
99
build
1010
/debian/
11+
.direnv/
12+
.envrc

Assets/ColorScheme/Ayu/Ayu.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"mError": "#D95757",
1010
"mOnError": "#0B0E14",
1111
"mSurface": "#0B0E14",
12-
"mOnSurface": "#BFBDB6",
12+
"mOnSurface": "#D1D1C7",
1313
"mSurfaceVariant": "#1e222a",
14-
"mOnSurfaceVariant": "#636A72",
14+
"mOnSurfaceVariant": "#8E959E",
1515
"mOutline": "#565B66",
1616
"mShadow": "#000000",
1717
"mHover": "#39BAE6",
@@ -37,7 +37,7 @@
3737
"cyan": "#95e6cb",
3838
"white": "#ffffff"
3939
},
40-
"foreground": "#cccac2",
40+
"foreground": "#D1D1C7",
4141
"background": "#1f2430",
4242
"selectionFg": "#1f2430",
4343
"selectionBg": "#409fff",
@@ -55,9 +55,9 @@
5555
"mError": "#E65050",
5656
"mOnError": "#F8F9FA",
5757
"mSurface": "#F8F9FA",
58-
"mOnSurface": "#5C6166",
58+
"mOnSurface": "#42474C",
5959
"mSurfaceVariant": "#E4E6E9",
60-
"mOnSurfaceVariant": "#8A9199",
60+
"mOnSurfaceVariant": "#6E757C",
6161
"mOutline": "#8A9199",
6262
"mShadow": "#F8F9FA",
6363
"mHover": "#55B4D4",
@@ -83,7 +83,7 @@
8383
"cyan": "#4cbf99",
8484
"white": "#d1d1d1"
8585
},
86-
"foreground": "#5c6166",
86+
"foreground": "#42474C",
8787
"background": "#f8f9fa",
8888
"selectionFg": "#f8f9fa",
8989
"selectionBg": "#035bd6",

Assets/ColorScheme/Nord/Nord.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@
8484
"white": "#eceff4"
8585
},
8686
"foreground": "#414858",
87-
"background": "#e5e9f0",
87+
"background": "#eceff4",
8888
"selectionFg": "#4c556a",
8989
"selectionBg": "#d8dee9",
9090
"cursorText": "#3b4252",
9191
"cursor": "#7bb3c3"
9292
}
9393
}
94-
}
94+
}
3.13 KB
Binary file not shown.

Assets/Services/fastfetch/system-info.jsonc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"os",
55
"kernel",
66
"title",
7+
"board",
78
"host",
89
"uptime",
910
"cpu",

Assets/Talia/TaliaBlank.png

18.5 KB
Loading

0 commit comments

Comments
 (0)