diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ffada59 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +location.txt \ No newline at end of file diff --git a/fish/config.fish b/fish/config.fish index 6511ccf..6066a13 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -4,4 +4,5 @@ end set fish_greeting alias l "ls -hAGg" +alias wtr "weather.sh" fish_add_path /home/crispypin/bin/scripts diff --git a/scripts/vrc-kit.sh b/scripts/vrc-kit.sh new file mode 100755 index 0000000..29148ac --- /dev/null +++ b/scripts/vrc-kit.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +echo "starting screenshot compressor" +kitty -e "vrc-compressor.py" & + +echo "starting video player fix" +kitty -e "vrc-mpv" & + +echo "starting ovr utils" +kitty -e "/home/crispypin/proj/godot/ovr-utils/builds/linux/ovr-utils.x86_64" & + +echo "setting GPU to vr power profile" +sudo GPU_VR.sh diff --git a/scripts/weather.sh b/scripts/weather.sh new file mode 100755 index 0000000..095260a --- /dev/null +++ b/scripts/weather.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +location=$(cat ~/dotfiles/location.txt) +echo "getting weather for "$location +echo + +curl "wttr.in/"$location"?2QFn" \ No newline at end of file diff --git a/vscodium.json b/vscodium.json index b505e92..0ee65ec 100644 --- a/vscodium.json +++ b/vscodium.json @@ -40,5 +40,6 @@ "window.zoomLevel": 1, "editor.renderWhitespace": "all", "terminal.integrated.fontFamily": "monospace", - "markdown.preview.fontFamily": "sans" + "markdown.preview.fontFamily": "sans", + "editor.bracketPairColorization.enabled": false } \ No newline at end of file