diff options
author | zachir <zachir@librem.one> | 2022-10-09 00:42:32 -0500 |
---|---|---|
committer | zachir <zachir@librem.one> | 2022-10-09 00:42:32 -0500 |
commit | 0217995cda2e5b3700b911b5561e99c659fba92b (patch) | |
tree | 80abdcf81366ebf51432b406e5e0e3293930cf8f /ffc-tofi | |
parent | 5355ec2d7e7e79d636e62b70af7dbb39002e98d3 (diff) |
add tofi scripts, replacing barmenu
Diffstat (limited to 'ffc-tofi')
-rwxr-xr-x | ffc-tofi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ffc-tofi b/ffc-tofi new file mode 100755 index 0000000..3131694 --- /dev/null +++ b/ffc-tofi @@ -0,0 +1,5 @@ +#!/sbin/sh +PROFILES=`grep 'Path=' ~/.mozilla/firefox/profiles.ini | cut -d'.' -f2` +CHOSEN=`echo "$PROFILES" | tofi` +[ -z "$CHOSEN" ] && exit 2 +firefox -P "$CHOSEN" |