logo

etc_portage

Unnamed repository; edit this file 'description' to name the repository. git clone https://hacktivis.me/git/etc_portage.git

tabbed-0.6 (2185B)


  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. static const char font[] = "monospace-9";
  4. static const char* normbgcolor = "#222222";
  5. static const char* normfgcolor = "#cccccc";
  6. static const char* selbgcolor = "#555555";
  7. static const char* selfgcolor = "#ffffff";
  8. static const char before[] = "<";
  9. static const char after[] = ">";
  10. static const int tabwidth = 200;
  11. static const Bool foreground = True;
  12. /*
  13. * Where to place a new tab when it is opened. When npisrelative is True,
  14. * then the current position is changed + newposition. If npisrelative
  15. * is False, then newposition is an absolute position.
  16. */
  17. static int newposition = 0;
  18. static Bool npisrelative = True;
  19. #define MODKEY Mod1Mask
  20. static Key keys[] = { \
  21. /* modifier key function argument */
  22. { MODKEY|ShiftMask, XK_Return, spawn, { 0 } },
  23. { MODKEY, XK_j, rotate, { .i = +1 } },
  24. { MODKEY, XK_k, rotate, { .i = -1 } },
  25. { MODKEY|ShiftMask, XK_j, movetab, { .i = -1 } },
  26. { MODKEY|ShiftMask, XK_k, movetab, { .i = +1 } },
  27. { MODKEY, XK_Tab, rotate, { .i = 0 } },
  28. { MODKEY, XK_1, move, { .i = 0 } },
  29. { MODKEY, XK_2, move, { .i = 1 } },
  30. { MODKEY, XK_3, move, { .i = 2 } },
  31. { MODKEY, XK_4, move, { .i = 3 } },
  32. { MODKEY, XK_5, move, { .i = 4 } },
  33. { MODKEY, XK_6, move, { .i = 5 } },
  34. { MODKEY, XK_7, move, { .i = 6 } },
  35. { MODKEY, XK_8, move, { .i = 7 } },
  36. { MODKEY, XK_9, move, { .i = 8 } },
  37. { MODKEY, XK_0, move, { .i = 9 } },
  38. { MODKEY, XK_q, killclient, { 0 } },
  39. { 0, XK_F11, fullscreen, { 0 } },
  40. };