8 lines
154 B
Plaintext
8 lines
154 B
Plaintext
cat .local/bin/open_lazygit_url
|
|
#! /usr/bin/env bash
|
|
|
|
case $1 in
|
|
*gtue*|*Gtue*) chromium --profile-directory="Profile 1" "$1";;
|
|
*) xdg-open "$1";;
|
|
esac
|