bp and zig bin

This commit is contained in:
Jozef Steinhübl 2023-08-24 11:38:18 +02:00
parent 6a599b660f
commit 609220d543
3 changed files with 19 additions and 4 deletions

View file

@ -115,7 +115,7 @@
"enabled": true
},
"EmoteCloner": {
"enabled": false
"enabled": true
},
"Experiments": {
"enabled": true,
@ -317,7 +317,7 @@
},
"ServerListIndicators": {
"enabled": true,
"mode": 2
"mode": 3
},
"Settings": {
"enabled": true,
@ -447,7 +447,7 @@
"saveZoomValues": true,
"preventCarouselFromClosingOnClick": true,
"invertScroll": true,
"zoom": 2.005365853658537,
"zoom": 1,
"size": 100,
"zoomSpeed": 0.27926829268292686,
"nearestNeighbour": false,
@ -576,6 +576,6 @@
"authenticated": true,
"url": "https://api.vencord.dev/",
"settingsSync": true,
"settingsSyncVersion": 1692787884974
"settingsSyncVersion": 1692863549373
}
}

11
.local/bin/bp Executable file
View file

@ -0,0 +1,11 @@
#!/bin/bash
# bp
# creates folder in /tmp with bun init a.k.a bun playground
BP_TEMP_PATH=$(mktemp -d --suffix=-bun.playground)
cd $BP_TEMP_PATH
bun init -y
nvim .
rm -rf $BP_TEMP_PATH

4
.local/bin/zig Executable file
View file

@ -0,0 +1,4 @@
#!/bin/bash
# Use zigd - version managing
zigd $@