mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-24 03:50:24 +10:00
Added this dmenu script for launching some stockk trading applications.
This commit is contained in:
30
.dmenu/dmenu-trading.sh
Executable file
30
.dmenu/dmenu-trading.sh
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/bin/bash
|
||||
# ____ _____
|
||||
# | _ \_ _| Derek Taylor (DistroTube)
|
||||
# | | | || | http://www.youtube.com/c/DistroTube
|
||||
# | |_| || | http://www.gitlab.com/dwt1/
|
||||
# |____/ |_|
|
||||
#
|
||||
# Dmenu script for launching trading programs.
|
||||
|
||||
|
||||
declare -a options=(" tastyworks
|
||||
tastytrade
|
||||
thinkorswim
|
||||
quit ")
|
||||
|
||||
choice=$(echo -e "${options[@]}" | dmenu -l -i -p 'System monitors: ')
|
||||
|
||||
if [ "$choice" == ' quit ' ]; then
|
||||
echo "Program terminated."
|
||||
fi
|
||||
if [ "$choice" == ' tastyworks ' ]; then
|
||||
exec /opt/tastyworks/tastyworks
|
||||
fi
|
||||
if [ "$choice" == ' tastytrade ' ]; then
|
||||
exec firefox tastytrade.com
|
||||
fi
|
||||
if [ "$choice" == ' thinkorswim ' ]; then
|
||||
exec /home/dt/thinkorswim/thinkorswim
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user