diff options
author | Marius Peter <marius.peter@tutanota.com> | 2025-05-01 12:37:57 +0200 |
---|---|---|
committer | Marius Peter <marius.peter@tutanota.com> | 2025-05-01 12:37:57 +0200 |
commit | f8dd863262b17c55999421fa71870ae99818d07d (patch) | |
tree | 7bdfcfc4d472ef0acc9fea7e61313f0cb596da89 /herbstluftwm-autostart.org | |
parent | f045c56c5d262cb12c6dbe2959e648f9027e550f (diff) |
Diffstat (limited to 'herbstluftwm-autostart.org')
-rw-r--r--[-rwxr-xr-x] | herbstluftwm-autostart.org | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/herbstluftwm-autostart.org b/herbstluftwm-autostart.org index 534dba0..97f8746 100755..100644 --- a/herbstluftwm-autostart.org +++ b/herbstluftwm-autostart.org @@ -16,7 +16,7 @@ * Introduction This is my literate configuration for {{{hl}}} and other programs -started at the beginning of a graphical session. {{{hl}}} is a manual +started at the beginning of a graphical session. {{{hl}}} is a manual tiling window manager and is configured via the ~herbstclient~ program. @@ -64,7 +64,7 @@ We remove all existing keybindings. hc keyunbind --all #+END_SRC -Choice of Modkey. =Mod1= is =Alt=, =Mod4= is =Super=. +Choice of Modkey. =Mod1= is =Alt=, =Mod4= is =Super=. #+BEGIN_SRC shell Mod=Mod4 @@ -222,7 +222,7 @@ Resizing frames and floating clients. The following cycles through the available layouts within a frame, but skips layouts, if the layout change wouldn't affect the actual window -positions. I.e. if there are two windows within a frame, the grid +positions. I.e. if there are two windows within a frame, the grid layout is skipped. #+BEGIN_SRC shell @@ -352,11 +352,11 @@ Copy ~inner_color~ to ~outer_color~. Gap between windows, tiled in a frame. #+BEGIN_SRC shell - hc set window_gap 32 + hc set window_gap 24 #+END_SRC We could reserve extra room on the edges common to all the tiled -windows. (Despite being a frame parameter, it really applies to the +windows. (Despite being a frame parameter, it really applies to the sum total of tiled windows in a given frame, so it belongs to this section). @@ -365,7 +365,7 @@ section). #+END_SRC If only one frame exists on a given monitor, no border gap is added to -the unique frame. But since we set the frame gap to 0, this has no +the unique frame. But since we set the frame gap to 0, this has no effect. #+BEGIN_SRC shell @@ -415,12 +415,12 @@ First, we cancel all previously bound rules. * Other programs -** Panel +** COMMENT Panel #+begin_src shell - xset +fp /home/blendux/.fonts/ - kill $(pgrep --full "panel.sh") - bash ~/.config/herbstluftwm/panel.sh + # xset +fp /home/blendux/.fonts/ + kill $(pgrep --full "panel.sh") + bash ~/.config/herbstluftwm/panel.sh #+end_src This panel is adapted from the one provided by default by {{{hl}}}, @@ -672,7 +672,7 @@ I'm using =lemonbar-xft=, which provides XFT support. #+end_src -** Dock +** COMMENT Dock #+BEGIN_SRC shell if [ $(pgrep plank) ] @@ -690,9 +690,8 @@ I'm using =lemonbar-xft=, which provides XFT support. if [ $(pgrep conky) ] then pkill conky - else - conky & fi + conky & #+end_src @@ -702,9 +701,9 @@ I'm using =lemonbar-xft=, which provides XFT support. if [ $(pgrep picom) ] then pkill picom - else - picom & fi + picom & + #+END_SRC |