Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove *FvwmPager: Label configuration option. #562

Merged
merged 1 commit into from
Jun 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions doc/modules/FvwmPager.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -221,21 +221,6 @@ size may be slightly different than the specified size.
window. Possible flags are: %t, %i, %c, and %r for the window's title,
icon title, class, or resource name, respectively. The default is
"%i".
*FvwmPager: Label desk label::
Assigns the text _label_ to desk _desk_ (or the current desk if desk
is "*") in the pager window. Useful for assigning symbolic names to
desktops, i.e.
+
....
*FvwmPager: Label 1 Mail
*FvwmPager: Label 2 Maker
*FvwmPager: Label * Matlab
....
+
*Note*: There is currently a much better way to specify desk names
globally (and not just in FvwmPager) using *DesktopName* command, so you
should not use this option anymore.

*FvwmPager: DeskColor desk color::
Assigns the color _color_ to desk _desk_ (or the current desk if desk
is "*") in the pager window. This replaces the background color for
Expand Down
14 changes: 0 additions & 14 deletions modules/FvwmPager/FvwmPager.c
Original file line number Diff line number Diff line change
Expand Up @@ -2023,20 +2023,6 @@ void ParseOptions(void)
}
}
}
else if (StrEquals(resource, "Label"))
{
if (StrEquals(arg1, "*"))
{
desk = 0;
}
else
{
desk = desk1;
sscanf(arg1,"%d",&desk);
}
TAILQ_FOREACH(m, &fp_monitor_q, entry)
SetDeskLabel(m, desk, (const char *)arg2);
}
else if (StrEquals(resource, "Font"))
{
if (font_string)
Expand Down