Commit Graph

1916 Commits

Author SHA1 Message Date
NRK 84d7322113 config.def.h: make keys and buttons const
pretty much all other variables are declared as const when they're not
modified.
2022-08-19 11:47:22 +02:00
Stein 5799dd1fca Remove blw variable in favour of calculating the value when needed
The purpose and reasoning behind the bar layout width (blw) variable
in dwm the way it is today may not be immediately obvious.

The use of the variable makes more sense when looking at commit
2ce37bc from 2009 where blw was initialised in the setup function
and it represented the maximum of all available layout symbols.

	for(blw = i = 0; LENGTH(layouts) > 1 && i < LENGTH(layouts); i++) {
		w = TEXTW(layouts[i].symbol);
		blw = MAX(blw, w);
	}

As such the layout symbol back then was fixed in size and both drawbar
and buttonpress depended on this variable.

The the way the blw variable is set today in drawbar means that it
merely caches the size of the layout symbol for the last bar drawn.

While unlikely to happen in practice it is possible that the last bar
drawn is not that of the currently selected monitor, which can result
in misaligned button clicks if there is a difference in layout symbol
width between monitors.
2022-08-17 13:33:57 +02:00
Stein 44adafe006 Make floating windows spawn within the monitor's window area
This is a follow-up on this thread:
https://lists.suckless.org/hackers/2208/18462.html

The orginal code had constraints such that if a window's starting
attributes (position and size) were to place the window outside of
the edges of the monitor, then the window would be moved into view
at the closest monitor edge.

There was an exception to this where if a top bar is used then the
window should not obscure the bar if present, which meant to place
the window within the window area instead.

The proposed change here makes it the general rule that floating
windows should spawn within the window area rather than within the
monitor area. This makes it simple and consistent with no
exceptions and it makes the intention of the code clear.

This has the benefit of making the behaviour consistent regardless
of whether the user is using a top bar or a bottom bar.

Additionally this will have an effect on patches that modify the
size of the window area. For example if the insets patch is used to
reserve space on the left hand side of the monitor for a dock or a
vertical bar then new floating clients will not obscure that area.
2022-08-12 09:02:34 +02:00
Stein a859676ead Simplify client y-offset correction
The reasoning behind the original line may be lost to time as
it does not make much sense checking the position on the x-axis
to determine how to position the client on the y-axis.

In the context of multi-monitor setups the monitor y position
(m->my) may be greater than 0 (say 500), in which case the window
could be placed out of view if:
   - the window attributes have a 0 value for the y position and
   - we end up using the y position of bh (e.g. 22)

If the aim is to avoid a new floating client covering the bar then
restricting y position to be at least that of the window area
(m->wy) should cover the two cases of using a top bar and using a
bottom bar.
2022-08-10 15:31:21 +02:00
Hiltjo Posthuma e0dee91145 sync code-style patch from libsl 2022-08-08 10:43:09 +02:00
NRK 5e76e7e21d code-style: simplify some checks
main change here is making the `zoom()` logic saner. the rest of the
changes are just small stuff which accumulated on my local branch.

pop() must not be called with NULL. and `zoom()` achieves this, but in a
very (unnecessarily) complicated way:

if c == NULL then nexttiled() will return NULL as well, so we enter this
branch:

	if (c == nexttiled(selmon->clients))

in here the !c check fails and the function returns before calling pop()

		if (!c || !(c = nexttiled(c->next)))
			return;

however, none of this was needed. we can simply return early if c was NULL.
Also `c` is set to `selmon->sel` so we can use `c` in the first check
instead which makes things shorter.
2022-08-06 16:09:01 +02:00
Anas Elgarhy eb4c01d478 Change the main terminal from alacritty -> kitty 🥰 2022-08-05 21:44:03 +02:00
explosion-mental 5b2e5e7a40 spawn: reduce 2 lines, change fprintf() + perror() + exit() to die("... :")
when calling die and the last character of the string corresponds to
':', die() will call perror(). See util.c

Also change EXIT_SUCCESS to EXIT_FAILURE
2022-08-02 18:08:51 +02:00
Stein 786f6e2a6f unmanage: stop listening for events for unmanaged windows
This is in particular to avoid flickering in dwm (and high CPU usage)
when hovering the mouse over a tabbed window that was previously
managed by dwm.

Consider the following two scenarios:

1)

We start tabbed (window 0xc000003), tabbed is managed by the
window manager.
We start st being embedded into tabbed.

$ st -w 0xc000003

What happens here is that:
   - tabbed gets a MapRequest for the st window
   - tabbed reparents the st window
   - tabbed will receive X events for the window

The window manager will have no awareness of the st window and the
X server will not send X events to the window manager relating to
the st window.

There is no flickering or any other issues relating to focus.

2)

We start tabbed (window 0xc000003), tabbed is managed by the
window manager.
We start st as normal (window 0xd400005).

What happens here is that:
   - the window manager gets a MapRequest for the st window
   - dwm manages the st window as a normal client
   - dwm will receive X events for the window

Now we use xdotool to trigger a reparenting of the st window into
tabbed.

$ xdotool windowreparent 0xd400005 0xc000003

What happens here is that:
   - tabbed gets a MapRequest for the st window
   - tabbed reparents the st window
   - the window manager gets an UnmapNotify
   - the window manager no longer manages the st window
   - both the window manager and tabbed will receive X events
     for the st window

In dwm move the mouse cursor over the tabbed window.

What happens now is that:
   - dwm will receive a FocusIn event for the tabbed window
   - dwm will set input focus for the tabbed window
   - tabbed will receive a FocusIn event for the main window
   - tabbed will give focus to the window on the currently selected
     tab
   - which again triggers a FocusIn event which dwm receives
   - dwm determines that the window that the FocusIn event is for
     (0xd400005) is not the currently selected client (tabbed)
   - dwm sets input focus for the tabbed window
   - this causes an infinite loop as long as the mouse cursor hovers
     the tabbed window, resulting in flickering and high CPU usage

The fix here is to tell the X server that we are no longer interested
in receiving events for this window when the window manager stops
managing the window.
2022-08-02 18:04:56 +02:00
Anas Elgarhy 202d939a66
Merge pull request #11 from anas-elgarhy/fix-freez-issue
Fix freez issue
2022-08-02 12:00:52 +02:00
Anas Elgarhy 4ecc0d3c9e
Merge pull request #12 from anas-elgarhy/revert-9-revert-8-fix-freez-issue
Revert "Revert "Fix freez issue""
2022-08-02 12:00:18 +02:00
Anas Elgarhy d1afe016d7
Revert "Revert "Fix freez issue"" 2022-08-02 11:59:09 +02:00
Anas Elgarhy 55e33220a7
Merge pull request #10 from anas-elgarhy/applay-keychain-patch
Fix the table
2022-08-02 11:56:36 +02:00
Anas Elgarhy 9260a252e1 Fix table 🥰 2022-08-02 11:51:05 +02:00
Anas Elgarhy e19cff5a96
Merge pull request #9 from anas-elgarhy/revert-8-fix-freez-issue
Revert "Fix freez issue"
2022-08-01 18:58:25 +02:00
Anas Elgarhy 1ef2014240
Revert "Fix freez issue" 2022-08-01 18:58:03 +02:00
Anas Elgarhy 1e36145313
Merge pull request #8 from anas-elgarhy/fix-freez-issue
Fix freez issue
2022-08-01 18:56:42 +02:00
Anas Elgarhy c3c5da0ae4
Merge pull request #7 from anas-elgarhy/applay-keychain-patch
Replace the keychord patch with keychain patch
2022-08-01 18:50:57 +02:00
Anas Elgarhy 0d2fe14e25 Test only 2022-07-31 12:48:12 +02:00
Anas Elgarhy fbaab1bbe3 Up the version 🥰 2022-07-31 05:52:37 +02:00
Anas Elgarhy aa5d8a8c22 🥰 2022-07-30 17:42:37 +02:00
Anas Elgarhy 5d3af206be Delete keychord diff file 🗑 2022-07-28 12:22:42 +02:00
Anas Elgarhy b726853f33 Applay applay keychain patch 🥰 2022-07-28 12:04:30 +02:00
Anas Elgarhy 138bb0bb41 Merge branch 'fix-freez-issue' into applay-keychain-patch 2022-07-28 09:36:17 +02:00
Anas Elgarhy 0c224e26f6 Merge add stuff branch 2022-07-28 09:32:55 +02:00
Anas Elgarhy 11f2af9ce1 Merge branch 'update-stuff' into fix-freez-issue
# Conflicts:
#	src/keys/keys.c
2022-07-28 09:31:15 +02:00
Anas Elgarhy 25a26c2a9e Add the diff file 2022-07-28 08:15:53 +02:00
Anas Elgarhy 214668b975 Reove keyChord patch 2022-07-28 08:08:20 +02:00
Anas Elgarhy bf3ce283ca o_o 2022-07-28 05:29:35 +02:00
Anas Elgarhy 8eafb095d2 Improve emoji picker command 🥰 2022-07-24 18:00:13 +02:00
Anas Elgarhy 71981a7941 Change mode + shift + f -> r to ... -> t for open the ranger 😀 2022-07-24 17:55:33 +02:00
Anas Elgarhy 2d0dd05de5 Create refrences section 🥰 2022-07-24 17:45:13 +02:00
Anas Elgarhy c089ee61e3 Add screet tag key ㊙️ 2022-07-24 17:39:02 +02:00
Anas Elgarhy 6288fd7d0c Lock the screen whin press on XF86XK_Suspend key 2022-07-24 17:37:15 +02:00
Anas Elgarhy 95139f7f17 Use static colors and change the tags names 😊 2022-07-24 17:29:24 +02:00
Anas Elgarhy 2652d5f977 Revers org/master commits 2022-07-24 08:31:30 +02:00
Hiltjo Posthuma e03248a4d5 Revert "do not call signal-unsafe function inside sighanlder"
This reverts commit 6613d9f9a1.

Discussed on the mailinglist:
https://lists.suckless.org/hackers/2207/18405.html
2022-07-22 09:18:52 +02:00
Anas Elgarhy 0442e3d109 Improve the code 🥰 2022-07-18 06:28:01 +02:00
Anas Elgarhy e5bbcaa6e7 unpatch anybar patch 🥲 2022-07-18 06:17:41 +02:00
Anas Elgarhy e391f7c2cc Merge branch 'rollback' 2022-07-17 17:30:07 +02:00
Anas Elgarhy 017d1a2040 😃 2022-07-17 17:28:47 +02:00
Anas Elgarhy 92f77de7de Applay anybar patch 🥰 2022-07-17 16:54:10 +02:00
Anas Elgarhy ded6ed9cab Useing pywall colors 🥰 2022-07-17 14:54:22 +02:00
Anas Elgarhy 3c12090e2e Update config.def file 🥰 2022-07-16 19:56:48 +02:00
Anas Elgarhy 4874c1e8d5 Up the version 😀 2022-07-16 19:56:07 +02:00
Anas Elgarhy 3efbd99936 Fix actions 😀 2022-07-16 19:52:01 +02:00
Anas Elgarhy 18c5a03fc1 Fix error 😃 2022-07-16 19:31:36 +02:00
Anas Elgarhy 1ae140d77e Add mirors links 🔗🪩 2022-07-16 19:28:20 +02:00
Anas Elgarhy edf1ab55ce Add mirror action 🪞🤍 2022-07-16 19:18:50 +02:00
Anas Elgarhy ae865f705c Improve the install steps 😉 2022-07-16 19:05:02 +02:00