dotfiles/script/.local/bin/generic-launcher

17 lines
234 B
Bash
Executable File

#!/usr/bin/env bash
# generic launcher for floating alacritty with size WIDTH X LENGTH
if [ -z $WIDTH ]
then
WIDTH=60
fi
if [ -z $LENGTH ]
then
LENGTH=30
fi
alacritty --dimensions $WIDTH $LENGTH --title launcher --command "$@"