minus-squarenfultztoLinux•Custom shell prompt tips and tricks?linkfedilinkarrow-up4·1 year agoCheck for the ssh env vars. For example, I use PS1="${SSH_CONNECTION:+\u@\h:}\W\$" to hide the hostname when not on SSH, you could do something similar with the control codes for color. linkfedilink
minus-squarenfultztoStatistics•[Meme] Descriptive StatisticslinkfedilinkEnglisharrow-up1·1 year agoTrim it! linkfedilink
minus-squarenfultztoBooks•What Are Lemmy's Favorite Books that Mix Fantasy & Science Fiction?linkfedilinkEnglisharrow-up2·1 year agoGene Wolfe’s New Sun series linkfedilink
minus-squarenfultztoMachine Learning•Machine Learning books recommendations?linkfedilinkEnglisharrow-up4·1 year agoESL by Hastie and Tibshirani https://hastie.su.domains/ElemStatLearn/ linkfedilink
Check for the ssh env vars. For example, I use
PS1="${SSH_CONNECTION:+\u@\h:}\W\$"
to hide the hostname when not on SSH, you could do something similar with the control codes for color.