From b2f56a06a9b6d3c2fdc09b33fbbd568b651d5eab Mon Sep 17 00:00:00 2001 From: Marc Coquand Date: Fri, 20 Sep 2024 19:11:00 +0300 Subject: . --- shrc | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) (limited to 'shrc') diff --git a/shrc b/shrc index 876f8d4..4d0134c 100644 --- a/shrc +++ b/shrc @@ -11,9 +11,12 @@ alias doc="dedoc --color off search" alias kill-sessions="tmux kill-session -a" alias restart-wifi="doas /usr/sbin/service netif restart" alias de='. ./.envrc' +alias logdate='date +"%Y-%m-%d"' +alias snapshothome='doas zfs snapshot zroot/home@$(logdate)' +alias commit-all="git add . && git commit -m '.' && git push" optimizeimg() { - convert -strip -quality 85% $1 $2 + magick -strip -quality 85% $1 $2 } @@ -27,7 +30,6 @@ refs() { recsel -q $1 ~/personal-db/refs.rec } -# Remove trailing newlines cleartrail() { cat $1 | tr -d '\n' } @@ -37,31 +39,19 @@ addref() { cat /tmp/description | xargs -I {} recins refs.rec -f Title -v $1 -f Tags -v $2 -f Text -v {} } -isrootprompt() { - CURR="$(id -u)" - case "$CURR" in - "0") echo "#" - ;; - *) echo "$" - ;; - esac -} - notes() { grep -i "$1" --format='%f%~' ~/notes/ | xargs -I {} cat {} } + . /home/mccd/.nix-profile/etc/profile.d/nix.sh -echo "BAT: $(apm -l), $(apm -b)" +echo "BAT: $(cat /sys/class/power_supply/BAT0/capacity), $(cat /sys/class/power_supply/BAT0/status)" set -o vi -eval "$(direnv hook bash)" +PS1='\W \$ ' -PS1='${PWD##*/} $(isrootprompt) ' eval "$(zoxide init posix --hook prompt)" - - -[ $(tty) == "/dev/ttyv0" ] && exec startx +[ "$(tty)" == "/dev/tty1" ] && exec startx -- cgit v1.2.3