Files
dtos-dotfiles/.dmenu/dmenu_edit_st
2019-01-29 18:22:13 -06:00

21 lines
522 B
Bash
Executable File

#!/bin/bash
# ____ _____
# | _ \_ _| Derek Taylor (DistroTube)
# | | | || | http://www.youtube.com/c/DistroTube
# | |_| || | http://www.gitlab.com/dwt1/
# |____/ |_|
#
# Use dmenu to open and edit a file from a given list.
# I use this to quickly open my st source files in vim.
# Global variables:
FILES=${1:-"/home/dt/st"}
DMENU='dmenu -l -i'
EDITOR='st -e vim'
# Show list of options
choice=$(ls -a "${FILES}" | $DMENU -p "« st » source code:")
if [ $choice ]; then
$EDITOR ${FILES}/${choice}
fi