Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

33 lines
1.5 KiB

  1. /* See LICENSE file for copyright and license details. */
  2. #include <X11/XF86keysym.h>
  3. /* appearance */
  4. static const int rmaster = 0; /* 1 = master at right*/
  5. static const unsigned int systraypinning = 0; /* 0: sloppy systray follows selected monitor, >0: pin systray to monitor X */
  6. static const unsigned int systrayspacing = 2; /* systray spacing */
  7. static const int systraypinningfailfirst = 1; /* 1: if pinning fails, display systray on the first monitor, False: display systray on the last monitor*/
  8. static const int showsystray = 1; /* 0 means no systray */
  9. static const int tag_padding = 0;
  10. static const int vertpad = 0; /* vertical padding of bar */
  11. static const int sidepad = 0; /* horizontal padding of bar */
  12. /* tagging */
  13. static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"};
  14. //static const char *alttags[] = { "󰄯", "󰄯", "󰄯", "󰄯"};
  15. /* layout(s) */
  16. static const float mfact = 0.5; /* factor of master area size [0.05..0.95] */
  17. static const int nmaster = 1; /* number of clients in master area */
  18. static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
  19. static const Layout layouts[] = {
  20. /* symbol arrange function */
  21. { "鉶", tile }, /* first entry is default */
  22. /* { "", dwindle }, */
  23. { "ﱖ", grid },
  24. { "", centeredmaster },
  25. { "", centeredfloatingmaster },
  26. { "[M]", monocle },
  27. { "[D]", deck },
  28. { NULL, NULL },
  29. };