北港不夏 (@dear7575) 在 oh-my-posh 主题替换 中发帖
[!tip]
嫌切换主题有点麻烦,整了个小脚本水一水 🤣,非常感谢佬的公益API @kkkyyx
#!/bin/bash
# oh-my-posh 主题管理脚本
# 使用方法: ./script.sh [--backup] 或 ./script.sh [-b]
THEME_DIR=~/.poshthemes
CONFIG_FILE=~/.bashrc
BACKUP_DIR=~/.poshthemes/backups
# 解析命令行参数
ENABLE_BACKUP=false
while [[ $# -gt 0 ]]; do
case $1 in
-b|--backup)
ENABLE_BACKUP=true
shift
;;
-h|--help)
...