dots


commit
95d82bd
parent
10d3007
author
xxwhirlpool
date
2026-01-27 07:04:17 -0500 EST
misc, unicode dmenu
4 files changed,  +22, -1
M config/.bashrc-pc
+1, -0
1@@ -137,6 +137,7 @@ alias copy="xclip -sel clipboard"
2 alias freeze="freeze -c user $1"
3 alias glow="glow -p $1"
4 alias qrcode="qrencode -t ansiutf8 $1"
5+alias ffmpeg="ffmpeg -hide_banner"
6 
7 # lazy ass way for me to get my idol mp3s from youtube
8 # usage: ytmp3 url
A config/.config/unilist/unilist.txt
+8, -0
1@@ -0,0 +1,8 @@
2+é latin small letter e with acute (U+00E9) [rosé]
3+É latin capital letter E with acute (U+00C9) [ROSÉ]
4+ñ latin small letter n with tilde (U+00F1) [mañana]
5+Ñ latin capital letter N with tilde (U+00D1) [MAÑANA]
6+— em dash (U+2014)
7+♡ white heart suit (U+2661)
8+♥ black heart suit (U+2665)
9+❥ rotated heavy black heart bullet (U+2765)
M config/.local/bin/scratchpad
+1, -1
1@@ -7,7 +7,7 @@ GREEN="\033[38;5;121m"
2 
3 file="$(mktemp --suffix _scratchpad)"
4 
5-/usr/bin/micro "$file"
6+micro "$file"
7 
8 echo -e "${GREEN}FILEPATH:${NOCOLOR}\n"
9 realpath "$file" | lolcat -p 1.5
A config/.local/bin/unilist
+12, -0
 1@@ -0,0 +1,12 @@
 2+#!/usr/bin/env bash
 3+#
 4+# this is just a chopped up `shmoji`
 5+
 6+unidir="$HOME/.config/unilist"
 7+unifile="$unidir/unilist.txt"
 8+
 9+uniprint() {
10+    printf "%s" "$1" | cut -d " " -f 1 | tr -d '\n'
11+}
12+
13+unipick=$(cat "$unifile" | dmenu -i -c -l 10) && uniprint "$unipick" | xclip -selection clipboard