dots


commit
7e16a33
parent
5cddb9b
author
xxwhirlpool
date
2026-03-29 14:15:14 -0400 EDT
misc
3 files changed,  +12, -2
M config/.bashrc-laptop
+4, -0
1@@ -236,3 +236,7 @@ eval "$(starship init bash)"
2 eval "$(fzf --bash)"
3 eval "$(batman --export-env)"
4 . "/home/kat/.deno/env"
5+
6+. "$HOME/.local/share/../bin/env"
7+eval "$(/home/kat/.cargo/bin/rv shell init bash)"
8+eval "$(/home/kat/.cargo/bin/rv shell completions bash)"
M config/.config/starship.toml
+6, -0
 1@@ -6,6 +6,12 @@ palette = "catppuccin_frappe"
 2 
 3 format = '$all$character$username$hostname$character$directory '
 4 
 5+# `rv` currently sets a permanent $RUBY_VERSION variable
 6+# so my shell always shows the ruby ver no matter the pwd
 7+# this just gets rid of the whole thing. whatever man
 8+[ruby]
 9+format = ""
10+
11 [character]
12 success_symbol = '[❥](bold pink)'
13 
M config/.local/bin/switchbluez
+2, -2
 1@@ -6,12 +6,12 @@
 2 device_name=$(pactl list cards | grep -B 20 "device.form_factor = \"headset\"" | grep "Name" | awk '{print $2}')
 3 
 4 goodaudio() {
 5-	pactl set-card-profile "$device_name" a2dp-sink-sbc_xq
 6+	pactl set-card-profile "$device_name" a2dp-sink-sbc_xq || echo "failed to switch to SBC-XQ" && exit 1
 7 	echo "switched to SBC-XQ"
 8 }
 9 
10 micaudio() {
11-	pactl set-card-profile "$device_name" headset-head-unit-msbc
12+	pactl set-card-profile "$device_name" headset-head-unit-msbc || echo "failed to switch to mSBC" && exit 1
13 	echo "switched to mSBC"
14 }
15