Dotfiles for my tiling window manager + terminal workflow.
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.

82 lines
2.0 KiB

  1. # ==============================================================================
  2. # GIMP SPECIFIC SETTINGS
  3. # ==============================================================================
  4. # TODO: This could really look nicer
  5. style "gimp_spin_scale" {
  6. # Spin background
  7. bg[NORMAL] = @base_color
  8. engine "pixmap" {
  9. image {
  10. function = BOX
  11. state = NORMAL
  12. detail = "spinbutton_up"
  13. overlay_file = "assets/spin-up.png"
  14. overlay_stretch = FALSE
  15. }
  16. image {
  17. function = BOX
  18. state = PRELIGHT
  19. detail = "spinbutton_up"
  20. overlay_file = "assets/spin-up.png"
  21. overlay_stretch = FALSE
  22. }
  23. image {
  24. function = BOX
  25. state = ACTIVE
  26. detail = "spinbutton_up"
  27. overlay_file = "assets/spin-up.png"
  28. overlay_stretch = FALSE
  29. }
  30. image {
  31. function = BOX
  32. state = INSENSITIVE
  33. detail = "spinbutton_up"
  34. overlay_file = "assets/spin-up-insensitive.png"
  35. overlay_stretch = FALSE
  36. }
  37. image {
  38. function = BOX
  39. state = NORMAL
  40. detail = "spinbutton_down"
  41. overlay_file = "assets/spin-down.png"
  42. overlay_stretch = FALSE
  43. }
  44. image {
  45. function = BOX
  46. state = PRELIGHT
  47. detail = "spinbutton_down"
  48. overlay_file = "assets/spin-down.png"
  49. overlay_stretch = FALSE
  50. }
  51. image {
  52. function = BOX
  53. state = ACTIVE
  54. detail = "spinbutton_down"
  55. overlay_file = "assets/spin-down.png"
  56. overlay_stretch = FALSE
  57. }
  58. image {
  59. function = BOX
  60. state = INSENSITIVE
  61. detail = "spinbutton_down"
  62. overlay_file = "assets/spin-down-insensitive.png"
  63. overlay_stretch = FALSE
  64. }
  65. }
  66. }
  67. # Disable spin button assets for GimpSpinScale
  68. class "GimpSpinScale" style "gimp_spin_scale"