10 lines
183 B
Bash
Executable file
10 lines
183 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
HOME=/home/$(whoami)
|
|
BASE_URI="https://github.com/hausgold/"
|
|
|
|
REPO=$(< "$HOME/.gh/hausgold-repos" tofi)
|
|
|
|
if [[ -n $REPO ]]; then
|
|
open-url "$BASE_URI$REPO"
|
|
fi
|