My build of suckless st terminal
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
2.4 KiB

  1. /* See LICENSE file for copyright and license details. */
  2. /* appearance */
  3. static char font[] = "Liberation Mono:pixelsize=12:antialias=false:autohint=false";
  4. static unsigned int borderpx = 2;
  5. static char shell[] = "/bin/sh";
  6. /* double-click timeout (in milliseconds) between clicks for selection */
  7. static unsigned int doubleclicktimeout = 300;
  8. static unsigned int tripleclicktimeout = 600;
  9. /* TERM value */
  10. static char termname[] = "st-256color";
  11. static unsigned int tabspaces = 8;
  12. /* Terminal colors (16 first used in escape sequence) */
  13. static const char *colorname[] = {
  14. /* 8 normal colors */
  15. "black",
  16. "red3",
  17. "green3",
  18. "yellow3",
  19. "blue2",
  20. "magenta3",
  21. "cyan3",
  22. "gray90",
  23. /* 8 bright colors */
  24. "gray50",
  25. "red",
  26. "green",
  27. "yellow",
  28. "#5c5cff",
  29. "magenta",
  30. "cyan",
  31. "white",
  32. [255] = 0,
  33. /* more colors can be added after 255 to use with DefaultXX */
  34. "#cccccc",
  35. "#333333",
  36. };
  37. /*
  38. * Default colors (colorname index)
  39. * foreground, background, cursor, unfocused cursor
  40. */
  41. static unsigned int defaultfg = 7;
  42. static unsigned int defaultbg = 0;
  43. static unsigned int defaultcs = 256;
  44. static unsigned int defaultucs = 257;
  45. /*
  46. * Special keys (change & recompile st.info accordingly)
  47. * Keep in mind that kpress() in st.c hardcodes some keys.
  48. *
  49. * Mask value:
  50. * * Use XK_ANY_MOD to match the key no matter modifiers state
  51. * * Use XK_NO_MOD to match the key alone (no modifiers)
  52. */
  53. /* key, mask, output */
  54. static Key key[] = {
  55. { XK_BackSpace, XK_NO_MOD, "\177" },
  56. { XK_Insert, XK_NO_MOD, "\033[2~" },
  57. { XK_Delete, XK_NO_MOD, "\033[3~" },
  58. { XK_Home, XK_NO_MOD, "\033[1~" },
  59. { XK_End, XK_NO_MOD, "\033[4~" },
  60. { XK_Prior, XK_NO_MOD, "\033[5~" },
  61. { XK_Next, XK_NO_MOD, "\033[6~" },
  62. { XK_F1, XK_NO_MOD, "\033OP" },
  63. { XK_F2, XK_NO_MOD, "\033OQ" },
  64. { XK_F3, XK_NO_MOD, "\033OR" },
  65. { XK_F4, XK_NO_MOD, "\033OS" },
  66. { XK_F5, XK_NO_MOD, "\033[15~" },
  67. { XK_F6, XK_NO_MOD, "\033[17~" },
  68. { XK_F7, XK_NO_MOD, "\033[18~" },
  69. { XK_F8, XK_NO_MOD, "\033[19~" },
  70. { XK_F9, XK_NO_MOD, "\033[20~" },
  71. { XK_F10, XK_NO_MOD, "\033[21~" },
  72. { XK_F11, XK_NO_MOD, "\033[23~" },
  73. { XK_F12, XK_NO_MOD, "\033[24~" },
  74. };
  75. /* Internal shortcuts. */
  76. #define MODKEY Mod1Mask
  77. static Shortcut shortcuts[] = {
  78. /* modifier key function argument */
  79. { MODKEY|ShiftMask, XK_Prior, xzoom, {.i = +1} },
  80. { MODKEY|ShiftMask, XK_Next, xzoom, {.i = -1} },
  81. };