2007-02-25 17:39:31 +00:00
|
|
|
# Define background for msfconsole
|
2007-02-25 18:03:25 +00:00
|
|
|
|
2007-06-27 19:30:13 +00:00
|
|
|
# For a black background
|
|
|
|
style "console"
|
2007-02-25 17:39:31 +00:00
|
|
|
{
|
2008-01-21 01:48:05 +00:00
|
|
|
# base[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
|
|
|
# fg[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
|
|
|
# text[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
2007-02-25 18:03:25 +00:00
|
|
|
|
2008-01-21 01:48:05 +00:00
|
|
|
base[NORMAL] = { 1.0, 1.0, 1.0 } # white
|
|
|
|
fg[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
|
|
|
text[NORMAL] = { 0.0, 0.0, 0.0 } # black
|
2007-02-25 18:03:25 +00:00
|
|
|
fontset="-*-lucida-medium-r-*-*-14-*-*-*-*-*-*-*"
|
2007-02-25 17:39:31 +00:00
|
|
|
}
|
|
|
|
|
2007-06-27 19:30:13 +00:00
|
|
|
|
|
|
|
# For the cursor
|
|
|
|
style "white-cursor" {
|
|
|
|
GtkTextView::cursor-color = "white"
|
|
|
|
}
|
|
|
|
|
2007-02-25 17:39:31 +00:00
|
|
|
# Attach style with the specific widget name
|
2007-06-27 19:30:13 +00:00
|
|
|
widget_class "GtkWindow.GtkVBox.GtkScrolledWindow.GtkTextView" style "console"
|
2008-01-21 01:48:05 +00:00
|
|
|
widget_class "GtkWindow.GtkVBox.GtkScrolledWindow.GtkTextView" style "white-cursor"
|