dots


commit
8a28b21
parent
46c7e7b
author
xxwhirlpool
date
2026-04-04 15:18:29 -0400 EDT
misc
3 files changed,  +13, -15
M .gitignore
+1, -0
1@@ -35,3 +35,4 @@ config/.local/bin/kaomoji.sh
2 config/.local/bin/quote
3 config/.local/bin/quoterandom
4 config/.config/plexclip/config.toml
5+config/.local/bin/discord_timest
M config/.bashrc-pc
+11, -15
 1@@ -1,7 +1,4 @@
 2 #!/bin/bash
 3-# ~/.bashrc: executed by bash(1) for non-login shells.
 4-# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
 5-# for examples
 6 
 7 ######################################
 8 # default stuff i'm scared to change
 9@@ -69,15 +66,7 @@ esac
10 if [ -x /usr/bin/dircolors ]; then
11     test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
12     alias ls='ls --color=auto'
13-
14     alias grep='grep --color=auto'
15-    alias fgrep='fgrep --color=auto'
16-    alias egrep='egrep --color=auto'
17-fi
18-
19-# Alias definitions.
20-if [ -f ~/.bash_aliases ]; then
21-    . ~/.bash_aliases
22 fi
23 
24 # enable programmable completion features
25@@ -93,8 +82,7 @@ fi
26 # aliases
27 ######################################
28 
29-# general
30-alias nano=micro
31+# general/misc
32 alias fd="fdfind"
33 alias neofetch="hyfetch"
34 alias fastfetch="hyfetch"
35@@ -112,7 +100,9 @@ alias ffmpeg="ffmpeg -hide_banner"
36 alias open="xdg-open"
37 alias c="clear"
38 alias unfuckwifi="sudo systemctl restart NetworkManager"
39- 
40+alias updupgr="sudo apt update && sudo apt upgrade"
41+alias winek="wineserver -k"
42+
43 # weather stuff
44 alias wttr="curl https://wttr.in/nyc?F0ASu"
45 alias weather=wttr
46@@ -132,7 +122,6 @@ alias pusheu="git push bytes main && cd /home/kat/Documents/Git/-mine/eunoia-ast
47 # dev
48 alias irb="rv run irb"
49 alias ipy="python3 -i"
50-alias iphp="php -a"
51 
52 # vpn split tunnel aliases based on a small script @ ~/.local/bin/mvpn
53 alias mftp="mvpn filezilla"
54@@ -242,6 +231,13 @@ mkcd() {
55   mkdir -p "$@" && cd "$_" || exit 1;
56 }
57 
58+# man by default, fall back to `help`
59+# for shell functions
60+# https://lobste.rs/s/fkr3ha/some_terminal_frustrations#c_70wike
61+man() {
62+	/usr/bin/man "$@" || help "$@"
63+}
64+
65 ######################################
66 # misc
67 ######################################
M config/.local/bin/md2page
+1, -0
1@@ -6,5 +6,6 @@ HTML="$HOME/Scripts/pandoc/md2html.html"
2 if [[ -f "$FILE" ]]; then
3 	pandoc --standalone "$FILE" --template="$HTML" --no-highlight --wrap=none -o "${FILE%.*}.html"
4 else
5+	echo "something went wrong"
6 	exit 1
7 fi