summaryrefslogtreecommitdiffstats
path: root/config.def.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bstackedJoe2025-03-021-3/+8
|
* winviewedJoe2025-03-021-0/+1
|
* nice niceJoe2025-03-021-8/+24
|
* grid and rainbows and its goodJoe2025-03-021-7/+32
|
* fixJoe2025-03-021-11/+10
|
* fixJoe2025-03-011-1/+1
|
* scratchpads yeyJoe2025-03-011-6/+28
|
* shiftedJoe2025-03-011-12/+16
|
* gaps and shitJoe2025-03-011-54/+67
|
* oh good generic gapsJoe2025-02-281-0/+6
|
* underlined2Joe2025-02-281-1/+0
|
* underlinedJoe2025-02-281-4/+9
|
* swallowdJoe2025-02-281-3/+6
|
* fuck tearingJoe2025-02-281-8/+0
|
* configJoe2025-02-281-4/+12
|
* confJoe2025-02-281-38/+48
|
* movestackedJoe2025-02-271-1/+4
|
* pertaggedJoe2025-02-271-2/+2
|
* jozanJoe2025-02-271-30/+61
|
* add a note about having at least a dummy rule for `rules[]`Leonardo Hernández Hernández2024-06-291-0/+1
| | | | Closes: https://codeberg.org/dwl/dwl/issues/656
* add bugref for negative x,y monitor position and xwaylandLeonardo Hernández Hernández2024-06-221-2/+4
|
* Allow negative coordinates in MonitorRulesA Frederick Christensen2024-06-021-0/+2
| | | | | Monitor/output position (-1, -1) remains as a single indicator value for autoconfigure layout. Additionally, one minor comment typo is corrected.
* Update wmenu-run nameA Frederick Christensen2024-05-051-1/+1
|
* switch to wmenusewn2024-05-051-1/+1
| | | | | | | | | bemenu is very bloated, turning itself into a library, which makes it 7489 SLOC. wmenu on the other hand, looks suckless by default, and is only 2000 SLOC, which i also find alot nicer to use, since bemenu does nothing to replicate the original dmenu feel.
* Fix rule examples; minimize newbie surprisesA Frederick Christensen2024-03-261-6/+6
| | | | | | | | Make example rules be actual EXAMPLES. Now newcomers should not have to ask, "When I start firefox, nothing happens. What is going on?" Also clarified a minor typo and a consistency in spacing.
* turn on -Wfloat-conversionLeonardo Hernández Hernández2024-01-151-6/+6
|
* restore and respect rootcolorDima Krasner2023-12-111-0/+1
|
* add a note about not removing the default ruleLeonardo Hernández Hernández2023-12-071-0/+1
| | | | Closes: https://codeberg.org/dwl/dwl/issues/527
* add a comment about chvt keybindingsLeonardo Hernández Hernández2023-11-011-0/+3
| | | | Closes: https://github.com/djpohly/dwl/issues/427
* Revert "just add define"Leonardo Hernández Hernández2023-10-091-2/+1
| | | | | | I'm going to make some changes in the config file anyway This reverts commit e5367753bb90add013ee5d170a110064298ac2c4.
* add [-d] flag to enable debug loggingLeonardo Hernández Hernández2023-10-091-0/+3
|
* make the borders red borders for urgent clientsLeonardo Hernández Hernández2023-10-091-0/+1
| | | | iirc this is the same behavior of dwm
* use the same border colors as dwmLeonardo Hernández Hernández2023-10-091-2/+2
|
* add missing url about the COLOR macroLeonardo Hernández Hernández2023-10-051-0/+1
|
* add macro to configure colorsLeonardo Hernández Hernández2023-10-051-3/+7
| | | | Closes: https://github.com/djpohly/dwl/issues/466
* just add defineBen Collerson2023-08-221-1/+2
|
* tagcount should have been a #defineBen Collerson2023-08-221-2/+2
|
* Stray whitespace fixesA Frederick Christensen2023-06-071-3/+3
|
* remove tag labels from dwlBen Collerson2023-04-081-2/+2
| | | | | | Tag labels are not used in dwl. Only the number of tags is important. Tag labels should be defined for each tag in whatever status bar is used.
* Remove rootcolorPalanix2023-03-131-1/+0
|
* add missing comma in "MonitorRule"gan-of-culture2023-02-251-1/+1
| | | add a missing comma for the example
* allow configure x and y of outputsLeonardo Hernández Hernández2023-02-131-3/+3
|
* add option for set button mapLeonardo Hernández Hernández2022-12-051-0/+5
|
* add option to allow invisible surfaces to disable idle trackingLeonardo Hernández Hernández2022-11-301-6/+7
|
* Revert "Add a configuration option for fullscreen locking"Leonardo Hernández Hernández2022-11-211-1/+0
| | | | | | now all fullcreen clients are rendered above tiled and floating clients This partially reverts commit 326eee14445f8a2c08e80c30778445630c75d3bb.
* config.def.h: fix commentLeonardo Hernández Hernández2022-11-101-1/+2
| | | | Fixes: https://github.com/djpohly/dwl/issues/333
* change the default term to `foot`Leonardo Hernández Hernández2022-09-181-1/+1
| | | | | | | | | it is closer to the suckless philosophy (foot implements things that the suckless guys would say that should be done by tmux or something else, but I have no desire to create a new terminal emulator, and the best fit is foot) also alacritty uses +100Mb of memory, more that dwl itself (~90Mb) and foot only ~20Mb
* conform the xdg-protocol with fullscreen translucent clientsLeonardo Hernández Hernández2022-07-231-0/+2
| | | | see `setfullscreen()` for more info
* Merge pull request #247 from Humm42/xkboptionsSevz2022-06-141-1/+1
|\ | | | | initialize xkb_rules.options to a null pointer
| * initialize xkb_rules.options to a null pointerLennart Jablonka2022-06-031-1/+1
| | | | | | | | | | | | | | Initializing it to an empty string had broken configuring xkbcommon through the environment (XKB_DEFAULT_OPTIONS). Fixes: ae313911153b ("initialize rules and xkb_rules")