7 lines
55 B
Bash
7 lines
55 B
Bash
#!/bin/sh
|
|
|
|
if [ $# -gt 0 ]; then
|
|
$*
|
|
else
|
|
i3
|
|
fi
|