/usr/share/sawfish/themes/Big/theme.jl is in sawfish-themes 0.13.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | ;; theme file, written Mon Aug 19 14:03:46 2002
;; created by sawfish-themer -- DO NOT EDIT!
(require 'make-theme)
(let
((patterns-alist
'(("close-button"
(inactive
"close-up.png"
(border
0
0
0
0))
(clicked
"close-down.png"))
("maximize-button"
(inactive
"restore-up.png")
(clicked
"maximize-down.png"))
("minimize-button"
(inactive
"minimize-up.png")
(clicked
"minimize-down.png"))
("controlbox"
(inactive
"menu-up.png")
(clicked
"menu-down.png"))
("title-bar"
(inactive
"unfocus-titlebar-up.png")
(focused
"titlebar.png")
(clicked
"titlebar-down.png"))
("text-color"
(inactive . "#c5d0c5d0c5d0")
(focused . "#ffffffffffff"))
("h-frame"
(inactive
"hborder.png"))
("v-frame"
(inactive
"vborder.png"))
("botright-corner"
(inactive
"botright.png"))
("botleft-corner"
(inactive
"boleft.png"))))
(frames-alist
'(("default"
((right-edge . -8)
(top-edge . -40)
(background . "close-button")
(class . close-button))
((top-edge . -40)
(right-edge . 32)
(background . "maximize-button")
(class . maximize-button))
((top-edge . -40)
(right-edge . 72)
(background . "minimize-button")
(class . iconify-button))
((font . "-*-lucida-medium-r-normal-*-*-180-*-*-*-*-*-*")
(left-edge . 32)
(right-edge . 112)
(top-edge . -40)
(text . window-name)
(background . "title-bar")
(foreground . "text-color")
(y-justify . center)
(x-justify . 10)
(class . title))
((top-edge . -40)
(left-edge . -8)
(background . "controlbox")
(class . menu-button))
((right-edge . 0)
(height . 8)
(bottom-edge . -8)
(left-edge . 0)
(background . "h-frame")
(class . bottom-border))
((left-edge . -8)
(bottom-edge . 0)
(top-edge . 0)
(background . "v-frame")
(class . left-border))
((right-edge . -8)
(top-edge . 0)
(bottom-edge . 0)
(background . "v-frame")
(class . right-border))
((bottom-edge . -8)
(right-edge . -8)
(background . "botright-corner")
(class . bottom-right-corner))
((bottom-edge . -8)
(background . "botleft-corner")
(left-edge . -8)
(class . bottom-left-corner)))))
(mapping-alist
'((default . "default")
(transient . "default")
(shaped . "default")
(shaped-transient . "default")
(unframed . "default")))
(theme-name 'Big))
(add-frame-style
theme-name (make-theme patterns-alist frames-alist mapping-alist))
(when (boundp 'mark-frame-style-editable)
(mark-frame-style-editable theme-name)))
|