我有一个脚本,当我运行它时,它会返回
Directory not found: ~/Pictures/Wallpaper
脚本如下:
#!/bin/bash
# Check if the wallpaper directory exists
if [ ! -d "$WALLPAPER_DIR" ]; then
echo "Directory not found: $WALLPAPER_DIR"
exit 1
fi
# Get currently loaded wallpaper
CURRENT_WALL=$(hyprctl hyprpaper listloaded)
# Get a random wallpaper that is not the current one
IMAGE=$(find "$WALLPAPER_DIR" -type f ! -name "$(basename "$CURRENT_WALL")" | -iname "*.jpg" -o -iname "*.png" -o -iname "*.jpeg" | shuf -n 1)
# Verify that an image was found
if [ -z "$IMAGE" ]; then
echo "No images found in $WALLPAPER_DIR"
exit 1
fi
环境$WALLPAPER_DIR
变量在我的 hyprland.conf 文件中配置,其值为我已验证的 ~/Pictures/Wallpaper。
我相当困惑为什么当变量和文件夹确实存在时它会返回 if 语句的否定结果。