why was my bashrc not being tracked

This commit is contained in:
lickthecheese 2020-09-28 22:01:37 -04:00
parent 8e7667cd80
commit abd120b4ae
1 changed files with 2 additions and 8 deletions

10
.bashrc
View File

@ -58,7 +58,8 @@ fi
if [ "$color_prompt" = yes ]; then
#export PS1='$(tput setaf 34)[ $(tput bold; tput setaf 28)ltc$(tput setaf 40)@$(tput setaf 28)arch$(tput sgr0; tput setaf 34) ] $(tput setaf 46)[ $(tput bold; tput setaf 40)\w$(tput sgr0; tput setaf 46) ]$(DIRY="\w"; printf "%$(($COLUMNS - 9 - 3 - 5 - ${#DIRY} - 12))s")$(tput bold; tput setaf 34)[ \t ]\n$ $(tput sgr0)'
PS1="\[\$([ \$? -eq 0 ] || tput setab 9)$(tput setaf 14)\] \[$(tput bold; tput setaf 0; tput setab 14)\] \u \[\e[m$(tput setaf 14; tput setab 4)\]\[$(tput setaf 0; tput setab 4)\] \w \[\e[m$(tput setaf 4)\]\[\e[m\] "
PS1="\[\$([ \$? -eq 0 ] && tput setaf 14 || tput setaf 9)$(tput setab 14)\]\[$(tput bold; tput setaf 0; tput setab 14)\]\u \[\e[m$(tput setaf 14; tput setab 4)\]\[$(tput setaf 0; tput setab 4)\] \w \[\e[m$(tput setaf 4)\]\[\e[m\] "
else
PS1='${debian_chroot:+($debian_chroot)}[ \u@\h \w\]$ '
fi
@ -115,7 +116,6 @@ fi
alias ll='ls -l'
alias bright="xrandr --output eDP-1 --brightness"
alias ffrec="ffmpeg -f pulse -i default -f x11grab -video_size 1366x768 -framerate 24 -i :0.0"
@ -140,14 +140,8 @@ alias t="topydo"
alias stdsize='wc -c | awk '"'"'{print $1/1000"K"}'"'"' '
leetpic() { curl -F"file=@$1" http://lickthe.1337331.xyz/i/u.php ; }
ltcpic() { curl -F"file=@$1" https://lickthecheese.fuckup.club/u.php ; }
ltcpst() { curl -F"text=<-" https://lickthecheese.fuckup.club/p.php ; }
ep() { curl -F"text=<-" https://i.ltcpas.tk/p.php ; }
plot() { cat /dev/stdin > /tmp/plotuwu; gnuplot -p -e 'set object rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb "black" fillstyle solid noborder; set border lw 3 lc rgb "white"; set xtics textcolor rgb "white"; set xlabel "X" textcolor rgb "white"; set ylabel "Y" textcolor rgb "white"; set key textcolor rgb "white"; plot for [col=1:'$1'] "/tmp/plotuwu" using 0:col title "'$3'" with '$2' lw 2 pt 7' ; }
smoothplot() { cat /dev/stdin > /tmp/plotuwu; gnuplot -p -e 'set object rectangle from screen 0,0 to screen 1,1 behind fillcolor rgb "black" fillstyle solid noborder; set border lw 3 lc rgb "white"; set xtics textcolor rgb "white"; set xlabel "X" textcolor rgb "white"; set ylabel "Y" textcolor rgb "white"; set key textcolor rgb "white"; plot for [col=1:'$1'] "/tmp/plotuwu" using 0:col smooth cspline title "'$3'" with '$2' lw 2 pt 7' ; }
calcpi() { echo "scale=$1; 4*a(1)" | bc -l ; }