dotfiles/.config/waybar/scripts/open_news_url.sh
2025-06-24 20:14:07 +02:00

9 lines
144 B
Bash
Executable File

#!/bin/bash
URL_FILE="${XDG_CACHE_HOME:-$HOME/.cache}/arch_news_last_url"
if [[ -f "$URL_FILE" ]]; then
xdg-open "$(cat "$URL_FILE")"
fi