dots


commit
444b024
parent
458dae0
author
xxwhirlpool
date
2025-09-01 13:21:07 -0400 EDT
misc
4 files changed,  +6, -41
D config/.local/bin/bright
+0, -9
 1@@ -1,9 +0,0 @@
 2-#!/bin/bash
 3-
 4-if [ "$1" == "up" ]; then
 5-	lxqt-config-brightness -i "$1"
 6-elif [ "$1" == "down" ]; then
 7-	lxqt-config-brightness -d "$2"
 8-else
 9-	echo "fuck"
10-fi
D config/.local/bin/getlyr
+0, -9
 1@@ -1,9 +0,0 @@
 2-#!/bin/bash
 3-
 4-artist=$(gum input --placeholder artist | awk '{$1=$1}1' OFS="+")
 5-
 6-song=$(gum input --placeholder song | awk '{$1=$1}1' OFS="+")
 7-
 8-echo -e $(gum style --italic --foreground "#f4b8e4" "'$artist', '$song'")
 9-
10-curl -s https://api.lyrics.ovh/v1/"$artist"/"$song" | jq -r .lyrics | less
M misc/.bashrc-snippets-laptop
+4, -0
1@@ -82,3 +82,7 @@ notif() {
2 	aplay -q /usr/share/sounds/sound-icons/start
3 	spd-say -t female3 -r +25 "done!"
4 }
5+
6+alias icat="kitten icat"
7+
8+alias gyolo="git add . && git commit -m 'yolo'"
M misc/.bashrc-snippets-pc
+2, -23
 1@@ -48,7 +48,6 @@ export FZF_DEFAULT_OPTS=" \
 2 cdmess() {
 3 	# from this blog post:
 4 	# https://blog.larah.me/mess-directory/
 5-	#
 6     today_tmpdir="${TMPDIR-/tmp}/${USER}_mess/$(date +%F)"
 7     mkdir -p "$today_tmpdir"
 8     cd "$(mktemp -d -p "${today_tmpdir}" XXXX)"
 9@@ -66,28 +65,6 @@ portfree() {
10 	echo "$port"
11 }
12  
13-# from http://dotfiles.org/~pseup/.bashrc
14-extract() {
15-  if [ -f $1 ] ; then
16-    case $1 in
17-      *.tar.bz2) tar xjf $1 ;;
18-      *.tar.gz) tar xzf $1 ;;
19-      *.bz2) bunzip2 $1 ;;
20-      *.rar) rar x $1 ;;
21-      *.gz) gunzip $1 ;;
22-      *.tar) tar xf $1 ;;
23-      *.tbz2) tar xjf $1 ;;
24-      *.tgz) tar xzf $1 ;;
25-      *.zip) unzip $1 ;;
26-      *.Z) uncompress $1 ;;
27-      *.7z) 7z x $1 ;;
28-      *) echo "'$1' cannot be extracted via extract()" ;;
29-    esac
30-  else
31-    echo "'$1' is not a valid file"
32-  fi
33-}
34- 
35 # print internal & external IPs
36 whatip() {
37 	# internal
38@@ -136,3 +113,5 @@ notif() {
39 }
40 
41 alias icat="kitten icat"
42+
43+alias gyolo="git add . && git commit -m 'yolo'"