Skip to content

Commit

Permalink
Uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
mckset authored Jan 30, 2023
1 parent ef0d3a1 commit f6d88d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions xdo_util.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/* xdo utility pieces
*
* $Id$
*/

#ifndef _XDO_UTIL_H_
#define _XDO_UTIL_H_

#include "xdo.h"

/* human to Keysym string mapping */
static const char *symbol_map[] = {
"alt", "Alt_L",
"ctrl", "Control_L",
"control", "Control_L",
"meta", "Meta_L",
"super", "Super_L",
"shift", "Shift_L",
"enter", "Return",
"return", "Return",
NULL, NULL,
};

#endif /* ifndef _XDO_UTIL_H_ */

0 comments on commit f6d88d9

Please sign in to comment.