mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-17 18:03:23 -05:00
27 lines
626 B
Bash
Executable File
27 lines
626 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#-*-coding:utf-8 -*-
|
|
#Auto updated?
|
|
# Yes
|
|
#File:
|
|
# fzf_menu_run
|
|
#Author:
|
|
# The-Repo-Club [wayne6324@gmail.com]
|
|
#Github:
|
|
# https://github.com/The-Repo-Club/
|
|
#
|
|
#Created:
|
|
# Wed 10 March 2021, 12:34:47 PM [GMT+1]
|
|
#Modified:
|
|
# Thu 20 October 2022, 05:48:00 AM [GMT+1]
|
|
#
|
|
#Description:
|
|
# <Todo>
|
|
#
|
|
#Dependencies:
|
|
# devour, fzf
|
|
#
|
|
# shellcheck disable=all
|
|
|
|
programs=$(compgen -c | sort -u | tail -n +9)
|
|
cmd=$(echo -e "$programs" | fzf --prompt="Run Program: " --border=rounded --margin=1% --color=dark --height 100% --reverse --header=" PROGRAM MENU " --info=hidden --header-first)
|
|
exec gobble $cmd |