this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc, bluetooth connect script

+20 -2
+2 -2
config/.bashrc-mariposa
··· 108 108 109 109 # some cd bookmarks 110 110 alias dotf="cd /home/kat/dotfiles" 111 - alias gmine="cd /home/kat/Projects/-mine" 111 + alias gmine="cd /home/kat/Projects/mine" 112 112 113 113 # weather stuff 114 114 alias wttr="curl https://wttr.in/nyc?F0ASu" ··· 125 125 alias gdiff="gitd" 126 126 alias gits="git status" 127 127 alias gita="git add ." 128 - alias pusheu="git push bytes main && cd /home/kat/Projects/-mine/eunoia-astro/src/utils && node git-changelog.js && cd ../../" 128 + alias pusheu="git push bytes main && cd /home/kat/Projects/mine/eunoia-astro/src/utils && node git-changelog.js && cd ../../" 129 129 130 130 # dev 131 131 alias irb="rv run irb"
+18
config/.local/bin/blueconnect
··· 1 + #!/usr/bin/env bash 2 + 3 + headset="40:72:18:44:87:92" 4 + 5 + disconnect() { 6 + bluetoothctl disconnect 7 + } 8 + 9 + connect() { 10 + bluetoothctl connect "$headset" 11 + } 12 + 13 + choose=$(gum choose "connect" "disconnect") 14 + case "$choose" in 15 + connect) connect;; 16 + disconnect) disconnect;; 17 + *) exit 1;; 18 + esac