blob: 65e0766b68e0102060ff13afb6220f7bf30be897 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Shell
static char shell[] = "sh";
#define MOD Mod1Mask|ShiftMask
static Key keys[] = {
{ MOD, XK_y, "notify-send hello" },
{ MOD, XK_z, "~/scripts/notify.sh wow" },
};
|