diff options
author | Joan MIlev <51526053+exorcist365@users.noreply.github.com> | 2021-07-13 01:01:19 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-12 23:01:19 +0100 |
commit | 23accf6c3acacb1c972961612cce1c7c831b11e7 (patch) | |
tree | 2b9865fffedb2ed4312d7c768f80bb920cd9c32e /doc | |
parent | 802cd7ea845b804156ccdcce869526d178cf7e53 (diff) | |
download | xmobar-23accf6c3acacb1c972961612cce1c7c831b11e7.tar.gz xmobar-23accf6c3acacb1c972961612cce1c7c831b11e7.tar.bz2 |
Add TopH and BottomH for only controlling height of the window. (#556)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/quick-start.org | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/doc/quick-start.org b/doc/quick-start.org index 4b06057..c8cb6c9 100644 --- a/doc/quick-start.org +++ b/doc/quick-start.org @@ -29,8 +29,8 @@ the =Config= block in your configuration. - =alpha= The transparency. 0 is transparent, 255 is opaque. -- =position= Top, TopP, TopW, TopSize, Bottom, BottomP, BottomW, - BottomSize or Static (with x, y, width and height). +- =position= Top, TopH, TopP, TopW, TopSize, Bottom, BottomH, + BottomP, BottomW, BottomSize or Static (with x, y, width and height). TopP and BottomP take 2 arguments: left padding and right padding. @@ -42,9 +42,23 @@ the =Config= block in your configuration. integer for the percentage width, and an integer for the minimum pixel height that the xmobar window will have. + TopH and BottomH take one argument (Int) which adjusts the bar height. + For example: #+begin_src haskell + position = TopH 30 + #+end_src + + to make a 30 tall bar on the top, or + + #+begin_src haskell + position = BottomH 30 + #+end_src + + to make a 30 tall bar on the bottom of the screen. + + #+begin_src haskell position = BottomW C 75 #+end_src |