This is an automated email generated because a ref change occurred in the
git repository for project wmaker-crm.git.
The branch, master has been updated
via afe13d3e725f0c266a7b614fff219912fd1a55a7 (commit)
from e356ef8c058d174f8261b2c8508e93998b8c7d79 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit afe13d3e725f0c266a7b614fff219912fd1a55a7
Author: David Maciejak <
david.m...@gmail.com>
Date: Fri, 2 Jan 2026 12:52:50 -0500
URL: <
https://repo.or.cz/wmaker-crm.git/afe13d3e725f0c26>
New expert option: cycle all windows from all workspaces
Mentioned on the WMaker user mailing list, option disabled by default.
https://groups.google.com/g/wmaker-user/c/pR8P-ZYCDFo/m/Wo42U_xqBgAJ
So basically the patch is adding a new expert option in WPrefs (disabled by
default) to allow the switch panel to cycle over all the windows from all
workspaces. I believe it's useful if you are using a lot of fullscreen apps
each on different workspaces.
---
WPrefs.app/Expert.c | 3 +++
WindowMaker/Defaults/WindowMaker.in | 1 +
src/WindowMaker.h | 1 +
src/defaults.c | 2 ++
src/switchpanel.c | 4 ++--
5 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/WPrefs.app/Expert.c b/WPrefs.app/Expert.c
index 5b8e8200ba65..f7b7c7cefd8a 100644
--- a/WPrefs.app/Expert.c
+++ b/WPrefs.app/Expert.c
@@ -72,6 +72,9 @@ static struct expert_option {
{ N_("Cycle windows only on the active head."),
/* default: */ False, OPTION_WMAKER, "CycleActiveHeadOnly" },
+ { N_("Cycle all windows from all workspaces."),
+ /* default: */ False, OPTION_WMAKER, "CycleAllWorkspaces" },
+
{ N_("Ignore minimized windows when cycling."),
/* default: */ False, OPTION_WMAKER, "CycleIgnoreMinimized" },
diff --git a/WindowMaker/Defaults/WindowMaker.in b/WindowMaker/Defaults/WindowMaker.in
index 8acff966e199..0cc0f65485c3 100644
--- a/WindowMaker/Defaults/WindowMaker.in
+++ b/WindowMaker/Defaults/WindowMaker.in
@@ -252,5 +252,6 @@
SelectCursor = (builtin, cross);
DialogHistoryLines = 500;
CycleActiveHeadOnly = NO;
+ CycleAllWorkspaces = NO;
CycleIgnoreMinimized = NO;
}
diff --git a/src/WindowMaker.h b/src/WindowMaker.h
index 14392c4d974b..098a6a079bdb 100644
--- a/src/WindowMaker.h
+++ b/src/WindowMaker.h
@@ -454,6 +454,7 @@ extern struct WPreferences {
char single_click; /* single click to lauch applications */
int history_lines; /* history of "Run..." dialog */
char cycle_active_head_only; /* Cycle only windows on the active head */
+ char cycle_all_workspaces; /* Cycle all windows from all workspaces */
char cycle_ignore_minimized; /* Ignore minimized windows when cycling */
char double_click_fullscreen; /* Double click on titlebar maximize a window to full screen*/
char close_rootmenu_left_right_click;/* Close application menu when mouse (left or right) is clicked outside focus */
diff --git a/src/defaults.c b/src/defaults.c
index c10f27ff5a4c..878f18b8dba1 100644
--- a/src/defaults.c
+++ b/src/defaults.c
@@ -849,6 +849,8 @@ WDefaultEntry optionList[] = {
&wPreferences.history_lines, getInt, NULL, NULL, NULL},
{"CycleActiveHeadOnly", "NO", NULL,
&wPreferences.cycle_active_head_only, getBool, NULL, NULL, NULL},
+ {"CycleAllWorkspaces", "NO", NULL,
+ &wPreferences.cycle_all_workspaces, getBool, NULL, NULL, NULL},
{"CycleIgnoreMinimized", "NO", NULL,
&wPreferences.cycle_ignore_minimized, getBool, NULL, NULL, NULL},
{"DbClickFullScreen", "NO", NULL,
diff --git a/src/switchpanel.c b/src/switchpanel.c
index cb6cda1080a2..e12b97f97c02 100644
--- a/src/switchpanel.c
+++ b/src/switchpanel.c
@@ -79,7 +79,7 @@ static short int label_height;
static int canReceiveFocus(WWindow *wwin)
{
- if (wwin->frame->workspace != wwin->screen_ptr->current_workspace)
+ if (!wPreferences.cycle_all_workspaces && wwin->frame->workspace != wwin->screen_ptr->current_workspace)
return 0;
if (wPreferences.cycle_active_head_only &&
@@ -90,7 +90,7 @@ static int canReceiveFocus(WWindow *wwin)
return 0;
if (!wwin->flags.mapped) {
- if (!wwin->flags.shaded && !wwin->flags.miniaturized && !wwin->flags.hidden)
+ if (!wwin->flags.shaded && !wwin->flags.miniaturized && !wwin->flags.hidden && !wPreferences.cycle_all_workspaces)
return 0;
else
return -1;
-----------------------------------------------------------------------
Summary of changes:
WPrefs.app/Expert.c | 3 +++
WindowMaker/Defaults/WindowMaker.in | 1 +
src/WindowMaker.h | 1 +
src/defaults.c | 2 ++
src/switchpanel.c | 4 ++--
5 files changed, 9 insertions(+), 2 deletions(-)
repo.or.cz automatic notification. Contact project admin
crm...@gmail.com
if you want to unsubscribe, or site admin
ad...@repo.or.cz if you receive
no reply.
--
wmaker-crm.git ("The Window Maker window manager")