9 lines
144 B
Bash
Executable File
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
|
|
|