11 lines
258 B
Bash
Executable file
11 lines
258 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
|
|
# firefox -P 'Work' "$BASE_URI$REPO"
|
|
nohup vivaldi --profile-directory="Work" "$BASE_URI$REPO" &
|
|
fi
|