diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2009-07-10 19:17:12 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2009-07-10 19:17:12 +0200 |
commit | c20d8694aeb6a9bc39a3523327b37ab3389c647c (patch) | |
tree | de4bbb986d1efeb5fea7593001e8461a75d824c3 /doc | |
parent | 209f5337ee4f67f694331fc5d1000bdf64a380b4 (diff) |
new feature: allow for fixed size columns
Diffstat (limited to 'doc')
-rw-r--r-- | doc/config | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -101,12 +101,18 @@ ## ## - syntax for each column is: ## -## (width of column in %)[column's color]{displayed tag} +## (width of column)[column's color]{displayed tag} +## +## Note: Width is by default in %, if you want a column to +## have fixed size, add 'f' after the value, e.g. (10)[white]{a} +## will be the column that take 10% of screen (so the real column's +## width will depend on actual screen size), whereas (10f)[white]{a} +## will take 10 terminal cells, no matter how wide the screen is. ## ## - color is optional (if you want the default one, type []) ## # -#song_columns_list_format = "(7)[green]{l} (28)[cyan]{a} (28)[]{b} (50)[red]{t}" +#song_columns_list_format = "(7f)[green]{l} (25)[cyan]{a} (40)[]{t} (30)[red]{b}" # ##### various settings ##### # |