Show HN: Try my new Bash prompt PS1='\$ ' # short and sweet prompt old_cmdno=${old_cmdno-0} old_lines=${old_lines-0} old_cols=${old_cols-0} prepare_terminal() { stty rows $((LINES - 1)) printf "\n\033[1A" old_lines=$LINES old_cols=$COLUMNS } update_status_line() { local exit=$? local getcmdno='\#' local cmdno=${getcmdno@P} local esc=$(printf "\033") local pwd=$PWD local dots= [ $LINES -eq $old_lines -a $COLUMNS -eq $old_cols ] || prepare_terminal local status_esc="$esc[7m$esc[m" while true; do [ "${pwd#/*/}" == "$pwd" ] && break local status="$esc[7m$(date +%m-%d/%H:%M)$esc[m $HOSTNAME $dots$pwd" local status_len=$((${#status} - ${#status_esc})) [ $status_len -le $COLUMNS ] && break pwd=${pwd#/} pwd=/${pwd#*/} dots='...' done status_len=$((${#status} - ${#status_esc})) [ $status_len -gt $COLUMNS ] && status= printf "${esc}7$esc[%s;1H$esc[K%s$esc[1;%sr${esc}8" $((LINES + 1)) "$status" $LINES if [ $exit -ne 0 -a $cmdno -ne $old_cmdno ] ; then printf "!%s!\n" $exit fi old_cmdno=$cmdno } PROMPT_COMMAND='update_status_line' August 4, 2023 at 08:50AM
Show HN: Try my new Bash prompt https://ift.tt/1LVzxvF
Related Articles
Show HN: Boundless AI create custom LLM chatbots programatically https://ift.tt/Cn4HjMIShow HN: Boundless AI, create custom LLM chatbots programatically Boun… Read More
Show HN: Zsync, a Reddit Alternative with the Goal to Reward Quality Comments https://ift.tt/KLSo7wgShow HN: Zsync, a Reddit Alternative with the Goal to Reward Quality C… Read More
Show HN: Calculate the Cost of Your Meetings https://ift.tt/Ratykv6Show HN: Calculate the Cost of Your Meetings https://ift.tt/xO4hXyK Ju… Read More
Show HN: Interview Igniter AI Coach for Behavioral Interview Practice https://ift.tt/OJBFbI2Show HN: Interview Igniter – AI Coach for Behavioral Interview Practic… Read More
Show HN: BlackBox, an AI-powered content aggregation system for bloggers https://ift.tt/knepSF3Show HN: BlackBox, an AI-powered content aggregation system for blogge… Read More
Show HN: FlingUp, a Reddit-like platform Ive been building for the last 2 years https://ift.tt/C5zHS0tShow HN: FlingUp, a Reddit-like platform Ive been building for the las… Read More
Show HN: AI-Powered Vintage Interactive Fiction Interpreter https://ift.tt/ps9HJVIShow HN: AI-Powered Vintage Interactive Fiction Interpreter https://if… Read More
Show HN: Finarky – Portfolio Tracker with Personal Rate of Return https://ift.tt/vt4kJy5Show HN: Finarky – Portfolio Tracker with Personal Rate of Return A mi… Read More
0 Comments: