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