chiark / gitweb /
disobedience state monitoring -> separate source file
[disorder] / disobedience / disobedience.rc
CommitLineData
460b9539 1#
2# This file is part of DisOrder.
3# Copyright (C) 2006 Richard Kettlewell
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful, but
11# WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18# USA
19#
20
21# Default style for Disobedience
22#
23# See e.g. http://developer.gnome.org/doc/API/2.0/gtk/gtk-Resource-Files.html
24# for syntax documentation.
25
26style "disobedience-default"
27{
28 bg[NORMAL] = { 1.0, 1.0, 1.0 }
29 fg[NORMAL] = { 0.0, 0.0, 0.0 }
30 bg[PRELIGHT] = { 1.0, 1.0, 1.0 }
31 fg[PRELIGHT] = { 1.0, 1.0, 1.0 }
32}
33
34style "disobedience-playing"
35{
36 bg[NORMAL] = { 0.875, 1.0, 0.875 }
37 fg[NORMAL] = { 0.0, 0.0, 0.0 }
38}
39
40style "disobedience-even"
41{
42 bg[NORMAL] = { 1.0, 0.921875, 0.921875 }
43 fg[NORMAL] = { 0.0, 0.0, 0.0 }
44}
45
46style "disobedience-odd"
47{
48 bg[NORMAL] = { 1.0, 1.0, 1.0 }
49 fg[NORMAL] = { 0.0, 0.0, 0.0 }
50}
51
52style "disobedience-title"
53{
54 bg[NORMAL] = { 0.0, 0.0, 0.0 }
55 fg[NORMAL] = { 1.0, 1.0, 1.0 }
56 font_name = "Bold"
57}
58
59style "disobedience-drag"
60{
61 bg[NORMAL] = { 0.4, 0.4, 0.4 }
62 fg[NORMAL] = { 1.0, 1.0, 1.0 }
63}
64
65# The main tabs
66widget "disobedience.*.choose" style : application "disobedience-default"
67widget "disobedience.*.queue" style : application "disobedience-default"
68widget "disobedience.*.recent" style : application "disobedience-default"
69
70# Drag target
71widget "disobedience.*.queue-drag" style : application "disobedience-drag"
72
73# Rows in the queue/recent tabs
74widget "disobedience.*.row-playing" style : application "disobedience-playing"
75widget "disobedience.*.row-even" style : application "disobedience-even"
76widget "disobedience.*.row-odd" style : application "disobedience-odd"
77widget "disobedience.*.row-title" style : application "disobedience-title"