diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-31 20:15:49 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-31 20:16:10 +0100 |
commit | c5cc1dab1d5610c0d96f72dc36ac6d4b4476c8ed (patch) | |
tree | e17ad0370de82f619e6cb4f2e67248cf373519a2 /src/flags.h | |
parent | a0cbd4f04311392b785cf260abe52e2eb5695312 (diff) |
Make -l the default and add -b
Diffstat (limited to 'src/flags.h')
-rw-r--r-- | src/flags.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flags.h b/src/flags.h index 8344205..306464c 100644 --- a/src/flags.h +++ b/src/flags.h @@ -2,9 +2,9 @@ #define GRAB_FLAGS_H typedef struct { + bool b : 1; bool c : 1; bool i : 1; - bool l : 1; bool p : 1; bool s : 1; bool U : 1; |