Advertisement
Red-ex

skippy

Jun 9th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.33 KB | None | 0 0
  1. # Copy this to ~/.config/skippy-xd/skippy-xd.rc and edit it to your liking
  2. #
  3. # Notes:
  4. #
  5. # - colors can be anything XAllocNamedColor can handle
  6. #   (like "black" or "#000000")
  7. #
  8. # - distance is a relative number, and is scaled according to the scale
  9. #   factor applied to windows
  10. #
  11. # - fonts are Xft font descriptions
  12. #
  13. # - booleans are "true" or anything but "true" (-> false)
  14. #
  15. # - opacity is an integer in the range of 0-255
  16. #
  17. # - brighness is a floating point number (with 0.0 as neutral)
  18. #
  19. # - if the update frequency is a negative value, the mini-windows will only
  20. #   be updated when they're explicitly rendered (like, when they gain or
  21. #   lose focus).
  22. #
  23. # - the 'shadowText' option can be a color or 'none', in which case the
  24. #   drop-shadow effect is disabled
  25. #
  26. # - Picture specification:
  27. #   [WIDTHxHEIGHT] [orig|scale|scalek|tile] [left|mid|right] [left|mid|right]
  28. #   [COLOR|#FFFFFFFF] [PATH]
  29. #
  30. #   Examples:
  31. #   background = 500x400 tile right mid #FF0000 /home/richard/screenshots/256.png
  32. #   background = orig mid mid #FF000080
  33. #
  34. # - Bindings in [bindings] section can bind to "no" (do nothing), "focus"
  35. #   (focus to window), "iconify", "shade-ewmh" (toggle window shade state),
  36. #   "close-icccm" (close window with ICCCM method), "close-ewmh" (close
  37. #   window with EWMH method), or "destroy" (forcefully destroy the window).
  38. #
  39.  
  40. [general]
  41. distance = 50
  42. useNetWMFullscreen = true
  43. ignoreSkipTaskbar = true
  44. updateFreq = 10.0
  45. lazyTrans = false
  46. pipePath = /tmp/skippy-xd-fifo
  47. movePointerOnStart = true
  48. movePointerOnSelect = true
  49. movePointerOnRaise = true
  50. switchDesktopOnActivate = false
  51. useNameWindowPixmap = false
  52. forceNameWindowPixmap = false
  53. includeFrame = true
  54. allowUpscale = true
  55. showAllDesktops = false
  56. showUnmapped = true
  57. preferredIconSize = 48
  58. clientDisplayModes = thumbnail icon filled none
  59. iconFillSpec = orig mid mid #00FFFF
  60. fillSpec = orig mid mid #FFFFFF
  61. background =
  62.  
  63. [xinerama]
  64. showAll = true
  65.  
  66. [normal]
  67. tint = black
  68. tintOpacity = 0
  69. opacity = 200
  70.  
  71. [highlight]
  72. tint = #101020
  73. tintOpacity = 64
  74. opacity = 255
  75.  
  76. [tooltip]
  77. show = true
  78. followsMouse = true
  79. offsetX = 20
  80. offsetY = 20
  81. align = left
  82. border = #ffffff
  83. background = #404040
  84. opacity = 128
  85. text = #ffffff
  86. textShadow = black
  87. font = fixed-11:weight=bold
  88.  
  89. [bindings]
  90. miwMouse1 = focus
  91. miwMouse2 = close-ewmh
  92. miwMouse3 = iconify
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement