sites

public wiki contents of suckless.org
git clone git://git.suckless.org/sites
Log | Files | Refs

index.md (2317B)


      1 extrabar
      2 ==========
      3 
      4 Description
      5 -----------
      6 This patch will enable an extra status bar in dwm, in a similar manner to the
      7 [dualstatus](../dualstatus/) patch. If the standard status bar is at the top
      8 via `topbar`, the extra status bar will be placed at the bottom and vice versa.
      9 
     10 **Since the 20210930-a786211 version**
     11 
     12 There is now support for separate left and right statuses, click functionality and toggling the extra
     13 bar separately from the standard bar.
     14 
     15 The statuses can be set as follows:
     16 
     17 	xsetroot -name "standard status text;extra bar left status text;extra bar right status text"
     18 
     19 If you don't want a status at the left of the extra bar, you can omit the text between the
     20 separators so you have `;;` between the standard status text and the right status text. You
     21 can change the separator by changing the `statussep` variable.
     22 
     23 There are three clicking areas on the extra bar: the left status, the middle (between the statuses)
     24 and the right status.
     25 
     26 You can change the visibility for the extra bar by changing the `extrabar` variable. You can
     27 toggle the extra bar using the `toggleextrabar` function, bound to `MODKEY+SHIFT+B`. If you
     28 want the bars to toggle at the same time, set them to toggle with the same keybinding.
     29 
     30 **Previous versions**
     31 
     32 The status bar text can be set as follows:
     33 
     34 	xsetroot -name "standard status text;extra bar status text"
     35 
     36 Support for an alternative delimiter is available and the delimiter can be
     37 changed by editing the `statussep` variable.
     38 
     39 The text can be anchored to the left or right side of the screen by editing
     40 the `extrabarright` variable (20210209 diff only).
     41 
     42 
     43 Download
     44 --------
     45 * [dwm-extrabar-6.2-20190810.diff](dwm-extrabar-6.2-20190810.diff) (5680b) (2019.08.10)
     46 * [dwm-extrabar-6.2-20210209.diff](dwm-extrabar-6.2-20210209.diff) (5639b) (2021.02.09)
     47 * [dwm-extrabar-6.2-20210930-a786211.diff](dwm-extrabar-6.2-20210930-a786211.diff) (8817b) (2021.09.30)
     48 
     49 Screenshots
     50 -----------
     51 
     52 **Since the 20210930-a786211 version**
     53 
     54 ![The standard and extra bars with a simple status example](dwm-extrabar-20210930.png)
     55 
     56 
     57 **Previous versions**
     58 
     59 a simple extra status bar
     60 
     61 ![Visual of two status bars](dwm-extrabar-20190810.png)
     62 
     63 Authors
     64 -------
     65 * Chip Senkbeil - `<chip@senkbeil.org>`
     66 * Finn Rayment - `<finn@rayment.fr>`
     67 * Parker Wisslefield (20210930-a786211 version)