move column example to wiki

This commit is contained in:
Gokcehan 2017-09-07 23:30:48 +03:00
parent 33dad5e5ff
commit 3e0361911b

View File

@ -113,15 +113,3 @@ cmd compress ${{
tar czvf $1.tar.gz $1
rm -rf $1
}}
# dynamically set the number of columns on startup based on terminal width
${{
w=$(tput cols)
if [ $w -le 80 ]; then
lf -remote "send $id set ratios 1:2"
elif [ $w -le 160 ]; then
lf -remote "send $id set ratios 1:2:3"
else
lf -remote "send $id set ratios 1:2:3:5"
fi
}}