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