sites

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

index.md (2977B)


      1 awesomebar
      2 =====================
      3 
      4 Description
      5 -----------
      6 This patch changes the taskbar to be more like awesome. To be specific, it:
      7 * shows all tasks in the current tag in the taskbar at all times
      8 * clicking on an unfocused window's title in the taskbar focuses that window
      9 * clicking on a focused window's title in the taskbar hides that window
     10 * clicking on a hidden window's title in the taskbar unhides and focuses that window
     11 
     12 You can also hide and unhide windows from the keyboard. The default bindings are:
     13 * M-j/M-k to cycle through the visible windows in the current workspace
     14 * M-J/M-K to cycle through all windows in the current workspace - hidden windows shown this way are re-hidden once focus is lost
     15 * M-h to hide the current active window
     16 * M-s to unhide a window made visible by M-J/M-K
     17 * M-S to show all windows in the current workspace including hidden windows
     18   
     19 Since this patch relies on knowing how big everything is in the taskbar, make sure to adjust the buttonpress()/drawbar() functions to account for any space in the taskbar used by other patches (such as systray).
     20 
     21 ![screenshot](dwm-awesomebar-screenshot.png)
     22 
     23 Changelog
     24 ---------
     25 2023-04-31:
     26 * Updated to dwm 6.4
     27 * add: awesomebarwithhover patch for visual hover effects in the bar with configurable colours (could probably be improved greatly)
     28 
     29 2022-12-20:
     30 * Fixed broken patch (specifically, the 6.3 Xac version)
     31 
     32 2022-10-04:
     33 * Fix typo in titlebar theme switches
     34 
     35 2022-08-29:
     36 * Adapted to recent version
     37 * fix: crash on using shortcut `M-J/M-K` when all windows are hidden
     38 * add: new function to show all windows(hidden or shown) in the current workspace and a keyboard shortcut for it
     39 
     40 2020-09-07:
     41 * add: manage hidden windows via keyboard
     42 
     43 2020-08-29:
     44 * fix: crash on empty bar click
     45 * fix: hidden clients remain hidden after dwm restart
     46 * add: awesomebar-statuscmd and awesomebar-statuscmd-signal combined patches as separate files
     47 
     48 2019-03-10:
     49 * fix: uneven tabs count produce visual glitches
     50 
     51 Download
     52 --------
     53 Updated version from G-OD:
     54 * [dwm-awesomebar-20230431-6.4.diff](dwm-awesomebar-20230431-6.4.diff) (2023-04-31) 
     55 * [dwm-awesomebarwithhover-20230431-6.4.diff](dwm-awesomebarwithhover-20230431-6.4.diff) (2023-04-31) 
     56 
     57 Updated version from Xac:
     58 * [dwm-awesomebar-20220925-6.3.diff](dwm-awesomebar-20220925-6.3.diff) (2022-09-25) 
     59 
     60 2020-09-07 version:
     61 * [dwm-awesomebar-20200907-6.2.diff](dwm-awesomebar-20200907-6.2.diff) (2020-09-07)
     62 
     63 Updated version from Yegor Bayev:
     64 * [dwm-awesomebar-20200829-6.2.diff](dwm-awesomebar-20200829-6.2.diff) (2020-08-29)
     65 * [dwm-awesomebar-statuscmd-6.2.diff](dwm-awesomebar-statuscmd-6.2.diff) (2020-08-29)
     66 * [dwm-awesomebar-statuscmd-signal-6.2.diff](dwm-awesomebar-statuscmd-signal-6.2.diff) (2020-08-29)
     67 
     68 Original ornx patch:
     69 * [dwm-awesomebar-6.2.diff](dwm-awesomebar-6.2.diff) (2019-06-27)
     70 
     71 Authors
     72 -------
     73 * ornx <ornx[at]protonmail.com>
     74 * Yegor Bayev <kodxpub@gmail.com>
     75 * Xac <jiangfengxi.c@gmail.com>
     76 * [G-OD](https://github.com/G-OD)