aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2020-02-03 16:38:02 +0000
committerWynn Wolf Arbor2020-03-18 14:28:38 +0100
commit272293062fd32f1c87f5497c7b7dccedd8d724fb (patch)
tree8fb383867e749e20b8ee59abff56a13056f43369 /conf.c
parentae986902cfc1846881bb4341f33c0e14b495c309 (diff)
downloadcwm-272293062fd32f1c87f5497c7b7dccedd8d724fb.tar.gz
Map ('5') and allow mod5mask (altgr) as a modifier.
From Artturi Alm (though changed from 'm' to '5')
Diffstat (limited to '')
-rw-r--r--conf.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index 29b2053..c84be55 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.249 2019/03/07 12:54:21 okan Exp $
+ * $OpenBSD: conf.c,v 1.250 2020/02/03 16:38:02 okan Exp $
*/
#include <sys/types.h>
@@ -197,10 +197,11 @@ static const struct {
const char ch;
int mask;
} bind_mods[] = {
+ { 'S', ShiftMask },
{ 'C', ControlMask },
{ 'M', Mod1Mask },
{ '4', Mod4Mask },
- { 'S', ShiftMask },
+ { '5', Mod5Mask },
};
static const struct {
const char *key;