File tree Expand file tree Collapse file tree
config-editor/.config/Code/User Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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]" : {
Original file line number Diff line number Diff 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+
3341util.if_file_sourced || _setup " $@ "
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change @@ -11,16 +11,17 @@ main() {
1111install.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+
3241util.if_file_sourced || _setup " $@ "
You can’t perform that action at this time.
0 commit comments