sites

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

index.md (1372B)


      1 gridall
      2 =======
      3 
      4 Description
      5 -----------
      6 This patch introduces two new functions:
      7 
      8 1. One to view all windows across all tags using the gaplessgrid layout.
      9 
     10 2. Another to view the selected window in its original tag using the monocle layout.
     11 
     12 The idea is to press a shortcut (e.g., `Mod+g`) to display all windows, then after
     13 selecting one, press another shortcut (e.g., `Mod+r`) to jump to that window's tag
     14 and focus on it.
     15 
     16 This patch depends on two other patches: [gaplessgrid](https://dwm.suckless.org/patches/gaplessgrid)
     17 and [winview](https://dwm.suckless.org/patches/winview).
     18 
     19 If you already have the other two patches added to your `dwm` build, you can simply
     20 apply `dwm-gridall-6.5.diff`. If not, I've also created a combined patch
     21 that includes winview, gaplessgrid, and gridall `dwm-winview-gaplessgrid-gridall-6.5.diff`.
     22 
     23 Additionally, this patch serves as an example of how to combine two functions
     24 under a single shortcut, allowing users to further customize their `dwm` setup.
     25 
     26 **Note:** Sometimes a window may get "lost" in one of the tags. This patch helps
     27 you quickly find and focus on it without having to move it or change its tag.
     28 
     29 Download
     30 --------
     31 * [dwm-gridall-6.5.diff](dwm-gridall-6.5.diff)
     32 * [dwm-winview-gaplessgrid-gridall-6.5.diff](dwm-winview-gaplessgrid-gridall-6.5.diff)
     33 
     34 Authors
     35 -------
     36 * André Desgualdo Pereira - <desgua@gmail.com>