Shell
URxvt 中的電池條?
我正在瀏覽 URxvt 上的 ArchLinux 執行緒,我在文章 #184上發現了一個我正在瘋狂尋找的設置。
看起來 PS1 中有某種電池條,那裡也有點陣圖。我對 Linux 並不是那麼陌生,但我找不到任何關於它是如何完成的。
如果它只適用於特定的外殼,那很好,我只是想了解更多有關它的資訊。
它是一個 zsh shell 提示符,Oblique 的配置在 github上共享。
提示的基本內容是:
# prompt theme setopt prompt_subst PROMPT='%{$fg[blue]%}[%D{%d/%m/%y} %T]%{$reset_color%} %(!.%{$fg_bold[red]%}.%{$fg_bold[green]%}%n@)%m%{$reset_color%} %{$fg[magenta]%}[%(!.%1~.%~)]%{$reset_color%} $(_git_prompt_info) %{$fg[red]%}>>%{$reset_color%} ' # use battery status only if we are in linux console if [[ $TERM = linux* ]]; then RPROMPT='$(_battery_status)' fi
電池狀態是一個單獨的腳本,圖形是用 unicode 字元創建的。