blob: 184d34177f1e7639fd1e417be30eb06fa1765ae6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# current terminal
if [[ "$*" == *"-t"* ]]; then
EXTRA="--working-directory=$HOME" # idk
else
EXTRA="-tMelvins terminal"
fi
alacritty msg create-window "${EXTRA}" $@
|