All Projects → HadrienAka → TheBashMenu

HadrienAka / TheBashMenu

Licence: other
A useful bash script allowing you to easily create your own menu, which uses the directional keys! Quickly add your title, options and commands and you're good to go!

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to TheBashMenu

SlidingUpMenu
🚀 A very customizable library that allows you to present menu items (from menu resource and/or other sources) to users as a bottom sheet.
Stars: ✭ 26 (-50%)
Mutual labels:  dialog, menu
Customalertviewdialogue
Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms.
Stars: ✭ 100 (+92.31%)
Mutual labels:  dialog, menu
Wmzdialog
功能最多样式最多的弹窗,支持普通/微信底部/日期/地区/日历/选择/编辑/分享/菜单/自定义弹窗等,支持多种动画,链式编程调用(Pop-up windows with the most functions and styles, support normal/WeChat bottom/date/region/calendar/select/edit/share/menu/custom pop-up windows, etc., support multiple animations, chain programming calls)
Stars: ✭ 673 (+1194.23%)
Mutual labels:  dialog, menu
Vue Ui For Pc
基于Vue2.x的一套PC端UI组件,包括了Carousel 跑马灯、Cascader 级联、Checkbox 多选框、Collapse 折叠面板、DatePicker 日期选择、Dialog 对话框、Form 表单、Input 输入框、InputNumber 数字输入框、Layer 弹窗层、Loading 加载、Menu 菜单、Page 分页、Progress 进度条、Radio 单选框、SelectDropDown 仿select、Switch 开关、Table 表格、Tabs 标签页、Textarea 文本框、Tooltip 文字提示、BackTop 返回顶部、steps 步骤条、Transfer 穿梭框、Tree 树形、Upload 文件上传、Lazy 图片懒加载、Loading 加载、Pagination 分页等等
Stars: ✭ 156 (+200%)
Mutual labels:  dialog, menu
Anylayer
Android稳定高效的浮层创建管理框架
Stars: ✭ 745 (+1332.69%)
Mutual labels:  dialog, menu
Ax5ui Kernel
Javascript UI Framework - AX5UI - Kernel Module
Stars: ✭ 164 (+215.38%)
Mutual labels:  dialog, menu
guillotine
Guillotine is a gnome extension designed for efficiently carrying out executions of commands from a customizable menu. Simply speaking: it is a highly customizable menu that enables you to launch commands and toggle services.
Stars: ✭ 28 (-46.15%)
Mutual labels:  menu
ngx-modal
Dynamic modal dialog for Angular
Stars: ✭ 54 (+3.85%)
Mutual labels:  dialog
go-telegram-flow
Go Telegram Flow is a set of tools that may assist bot developers
Stars: ✭ 28 (-46.15%)
Mutual labels:  menu
apporder
Nextcloud app to enable sorting inside the app menu
Stars: ✭ 30 (-42.31%)
Mutual labels:  menu
PopOverAlert
PopOverAlert is a PopOver style alert view.
Stars: ✭ 56 (+7.69%)
Mutual labels:  menu
lazeemenu
Multi-level sidebar menu - JQuery plugin
Stars: ✭ 40 (-23.08%)
Mutual labels:  menu
selectr
✅ The coolest jQuery select plugin you've never seen
Stars: ✭ 19 (-63.46%)
Mutual labels:  menu
bootstrap-cookie-consent-settings
A modal dialog (cookie banner) and framework to handle the German and EU law about cookies in a website. Needs Bootstrap.
Stars: ✭ 25 (-51.92%)
Mutual labels:  dialog
opensnips
Open source projects related to Snips https://snips.ai/.
Stars: ✭ 50 (-3.85%)
Mutual labels:  dialog
ElDewrito-Menu
Possible replacement for Halo Online's UI heavily based on Halo: Reach
Stars: ✭ 22 (-57.69%)
Mutual labels:  menu
AudioVisualSceneAwareDialog
No description or website provided.
Stars: ✭ 22 (-57.69%)
Mutual labels:  dialog
AndroidLoadingView
🚗🚗🚗Android LoadingView
Stars: ✭ 25 (-51.92%)
Mutual labels:  dialog
navbar.js
Modern Navigation Component
Stars: ✭ 47 (-9.62%)
Mutual labels:  menu
Licenser
An android library to display the licenses of your application libraries in a easy way.
Stars: ✭ 75 (+44.23%)
Mutual labels:  dialog

The Bash Menu [v1.1]

A very useful script allowing you to create your own menu.

Easily create your own menu, which uses the directional keys. Quickly add your title, options and commands and you're good to go!

Informations:

There is a file named "elements.sh" containing different examples of input, output, reading functions in the same graphic style as "bmenu". You will also find "menuexample.sh", feel free to modify it to create your first menu. Once modified, type "bash menuexample.sh" to try it.

Work on : MacOs, KaliLinux [Probably more, tell me if that's the case]

Install:

git clone https://github.com/hadrienaka/TheBashMenu
cd TheBashMenu
bash install.sh

Create Your Own Menu :

Create a new bash file, then paste:

source bmenu -t "Menu Title" -s "[SubTitle]" -o "Option 1,Option 2,Option 3"

case ${selected} in
	1) TypeYourCommandHere;;
	2) TypeYourCommandHere;;
	3) TypeYourCommandHere;;
esac
! Put a comma between each options

Arguments:

-h, --help               Show brief help
-t, --title              Edit the title
-s, --subtitle           Edit the subtitle
-o, --option             Edit all the options (Put a comma between them)
-a, --alternative        Display an alternative menu (Put -a at the end of the command)
-u, --update             Download the latest version

Alternative Menu

The alternative menu may be a better choice when you have more than 10 options

To display an alternative menu, just add "-a" at the end of your command.

Twitter Follow GitHub followers Website

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].