blob: c4230bfeba66f3c1c6be0ddc52df1f1fae5177e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
#{{{ printhelp
printhelp () {
printf "brc: brave profile menu interface.\n"
printf " -u URL ) pass URL to browser\n"
printf " -d ARG ) pass ARG to menu command\n"
exit
}
#}}}
#{{{ getopts
while getopts "hd:u:" o; do case "${o}" in
d) ARG="$OPTARG" ;;
u) URL="$OPTARG" ;;
*) printhelp ;;
esac done
#}}}
#{{{ Native Profiles
if [ -d ~/.local/share/brave_profiles ]; then
PROFILES=$(ls -1 ~/.local/share/brave_profiles)
else
unset PROFILES
fi
#}}}
#{{{ Choose Profiles
CHOSEN=$(printf "%s" "$PROFILES" | dmenu -l 15 -p brave ${ARG:+"$ARG"})
[ -z "$CHOSEN" ] && exit 2
brave-profiles "$CHOSEN" "$URL"
#}}}
|