Commit Graph

1959 Commits

Author SHA1 Message Date
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
Anas Elgarhy 2dea5af3fe Fix path 😁 2022-07-16 19:00:14 +02:00
Anas Elgarhy 7ee26392d0 Orginize 🥰 2022-07-16 18:39:08 +02:00
Anas Elgarhy ce45d2bb6e Add obsidian shortcur and add stickyeys script to auto run stuff 2022-07-16 11:53:10 +02:00
Anas Elgarhy 11b78b17b6 Fix conflicts 🥰 2022-07-16 09:03:29 +02:00
Anas Elgarhy 62deba6b98 Merge remote-tracking branch 'org/master'
# Conflicts:
#	dwm.c
2022-07-16 08:54:20 +02:00
NRK 6613d9f9a1 do not call signal-unsafe function inside sighanlder
die() calls vprintf, fputc and exit; none of these are
async-signal-safe, see `man 7 signal-safety`.
2022-07-15 20:53:58 +02:00
NRK 9bffa845fa use named parameter for func prototype
all the other prototypes use names.
2022-07-15 20:53:56 +02:00