mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-11-16 06:59:52 -05:00
feat: add dispatch toggle_trackpad_enable
This commit is contained in:
parent
abd16bfefd
commit
8afcde6265
4 changed files with 44 additions and 6 deletions
|
|
@ -60,4 +60,5 @@ void toggle_named_scratchpad(const Arg *arg);
|
|||
void toggle_render_border(const Arg *arg);
|
||||
void create_virtual_output(const Arg *arg);
|
||||
void destroy_all_virtual_output(const Arg *arg);
|
||||
void focuslast(const Arg *arg);
|
||||
void focuslast(const Arg *arg);
|
||||
void toggle_trackpad_enable(const Arg *arg);
|
||||
|
|
@ -124,6 +124,10 @@ void focuslast(const Arg *arg) {
|
|||
}
|
||||
}
|
||||
|
||||
void toggle_trackpad_enable(const Arg *arg) {
|
||||
disable_trackpad = !disable_trackpad;
|
||||
}
|
||||
|
||||
void focusmon(const Arg *arg) {
|
||||
Client *c;
|
||||
Monitor *m = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue