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.

22 lines
850 B

  1. static const Rule rules[] = {
  2. /* xprop(1):
  3. * WM_CLASS(STRING) = instance, class
  4. * WM_NAME(STRING) = title
  5. * WM_WINDOW_ROLE(STRING) = role
  6. * _NET_WM_WINDOW_TYPE(ATOM) = wintype
  7. */
  8. RULE(.class = "discord", .tags = 1 << 8)
  9. RULE(.class = "firefoxdeveloperedition", .tags = 1 << 1)
  10. RULE(.class = "Mailspring", .tags = 1 << 7)
  11. RULE(.class = "Thunderbird", .tags = 1 << 7)
  12. RULE(.class = "st-256color", .tags = 1 << 0)
  13. RULE(.class = "Tor Browser", .tags = 1 << 1)
  14. RULE(.class = "Chromium", .tags = 1 << 1)
  15. RULE(.class = "TelegramDesktop", .tags = 1 << 8)
  16. RULE(.class = "whatsapp-nativefier-d52542", .tags = 1 << 8)
  17. RULE(.class = "Sublime_Text", .tags = 1 << 2)
  18. RULE(.class = "code-oss", .tags = 1 << 2)
  19. RULE(.class = "jetbrains-idea", .tags = 1 << 2)
  20. RULE(.class = "Nemo", .tags = 1 << 3)
  21. RULE(.class = "Spotify", .tags = 1 << 9)
  22. };