Change padding script to mimic CSS shorthands

This commit is contained in:
Talia 2021-07-26 08:44:07 +02:00
parent 86f3ea2fa8
commit cec6982ccf
1 changed files with 13 additions and 5 deletions

View File

@ -1,15 +1,23 @@
#!/bin/sh #!/bin/sh
h=0
if [ -n "$1" ] if [ -n "$1" ]
then h="$1" then t="$1"
else t="0"
fi fi
v=$h
if [ -n "$2" ] if [ -n "$2" ]
then v="$2" then l="$2"
else l="$t"
fi
if [ -n "$3" ]
then b="$3"
else b="$t"
fi
if [ -n "$4" ]
then r="$4"
else r="$l"
fi fi
if [ "$TERM" = "xterm-kitty" ] if [ "$TERM" = "xterm-kitty" ]
then then
kitty @ set-spacing padding-h=$h padding-v=$v kitty @ set-spacing padding-top=$t padding-left=$l padding-bottom=$b padding-right=$r
fi fi