-
Notifications
You must be signed in to change notification settings - Fork 416
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
Add config option record_history #917
base: master
Are you sure you want to change the base?
Add config option record_history #917
Conversation
@@ -1812,6 +1813,7 @@ void get_setting(coordinates_t loc, char *name, FILE* rsp) | |||
GET_BOOL(remove_disabled_monitors) | |||
GET_BOOL(remove_unplugged_monitors) | |||
GET_BOOL(merge_overlapping_monitors) | |||
GET_BOOL(record_history) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are using spaces for indentation here
GET_BOOL(record_history) | |
GET_BOOL(record_history) |
@@ -992,7 +992,7 @@ Manage all the unmanaged windows remaining from a previous session\&. | |||
.PP | |||
\fB\-h\fR, \fB\-\-record\-history\fR on|off | |||
.RS 4 | |||
Enable or disable the recording of node focus history\&. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should edit the asciidoc file, not the man
page directly: this change will be overwritten when the man
page is recompiled with make doc
.
What's the point of this patch? But what is the point of having both |
Fixes #909
This PR keeps the
bspc wm -h <true/false>
command, which now changes therecord_history
config value.Additionally, you can call
bspc config record_history <true/false>
to toggle history recording.