add vrc script, weather script
This commit is contained in:
parent
0c5a32f779
commit
328fff9ab1
5 changed files with 24 additions and 1 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
location.txt
|
|
@ -4,4 +4,5 @@ end
|
|||
|
||||
set fish_greeting
|
||||
alias l "ls -hAGg"
|
||||
alias wtr "weather.sh"
|
||||
fish_add_path /home/crispypin/bin/scripts
|
||||
|
|
13
scripts/vrc-kit.sh
Executable file
13
scripts/vrc-kit.sh
Executable file
|
@ -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
|
7
scripts/weather.sh
Executable file
7
scripts/weather.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
location=$(cat ~/dotfiles/location.txt)
|
||||
echo "getting weather for "$location
|
||||
echo
|
||||
|
||||
curl "wttr.in/"$location"?2QFn"
|
|
@ -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
|
||||
}
|
Loading…
Reference in a new issue