Skip to content

Commit 9be5e4e

Browse files
committed
2025.11.20
1 parent c113a63 commit 9be5e4e

5 files changed

Lines changed: 23 additions & 6 deletions

File tree

.github/workflows/update-blacklist.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ jobs:
3838
commit \
3939
--author='Otternaut <99463792+otternaut-bot@users.noreply.github.com>' \
4040
-S0xFB6C155AFD89739C \
41-
-m '$(date "+%Y.%m.%d")'
41+
-m "$(date '+%Y.%m.%d')"
4242
git push

os-unix/config-editor/.config/Code/User/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@
550550
"Lua.telemetry.enable": false,
551551

552552
// OTHER
553-
"workbench.colorTheme": "Bearded Theme Milkshake Mango",
553+
"workbench.colorTheme": "Quiet Light",
554554
"editor.cursorBlinking": "smooth",
555555
"editor.fontFamily": "'Hack', monospace",
556556
"[typescript]": {

os-unix/config-shell/powershell-core.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,12 @@ install.debian() {
3030
sudo apt-get -y install powershell
3131
}
3232

33+
install.ubuntu() {
34+
install.debian "$@"
35+
}
36+
37+
installed() {
38+
command -v powershell &>/dev/null
39+
}
40+
3341
util.if_file_sourced || _setup "$@"

os-unix/data/d.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ typedef struct Entry {
2525
.source = Src category ".local/share/" path, \
2626
.destination = Dst ".local/share/" path \
2727
}
28-
#define Done { \
28+
#define Done (Entry){ \
2929
.source = NULL, \
3030
.destination = NULL \
3131
}

os-unix/setup-other/mongodb.sh

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@ main() {
1111
install.debian() {
1212
local gpg_file="/etc/apt/keyrings/mongodb.asc"
1313
local dist='jammy'
14+
local version='8.0'
1415

1516
pkg.add_apt_key \
16-
'https://www.mongodb.org/static/pgp/server-6.0.asc' \
17+
"https://pgp.mongodb.com/server-$version.asc" \
1718
"$gpg_file"
1819

1920
pkg.add_apt_repository \
20-
'/etc/apt/sources.list.d/mongodb-6.0.sources' "
21+
"/etc/apt/sources.list.d/mongodb-$version.sources" "
2122
Types: deb
2223
URIs: https://repo.mongodb.org/apt/ubuntu
23-
Suites: $dist/mongodb-org/6.0
24+
Suites: $dist/mongodb-org/$version
2425
Components: multiverse
2526
Architectures: $(dpkg --print-architecture)
2627
signed-by: $gpg_file"
@@ -29,4 +30,12 @@ install.debian() {
2930
sudo apt-get install -y mongodb-org
3031
}
3132

33+
install.ubuntu() {
34+
install.debian "$@"
35+
}
36+
37+
installed() {
38+
command -v &>/dev/null mongod
39+
}
40+
3241
util.if_file_sourced || _setup "$@"

0 commit comments

Comments
 (0)