mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
b1335a3628
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
7 lines
103 B
Bash
Executable File
7 lines
103 B
Bash
Executable File
#!/bin/bash
|
|
if [ $# -eq 1 ]; then
|
|
/usr/bin/alacritty -e "nvim $1"
|
|
else
|
|
/usr/bin/alacritty -e "$@"
|
|
fi
|