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
|
# Example rc file
#
# DO NOT PUT IN ANY SPACES
# Where to load pixmaps from
theme=/usr/share/oroborus/themes/default
# Font colours
active_text_color=white
inactive_text_color=dimgray
# Title font
font=-*-helvetica-bold-r-*-*-120-*
# Title text alignment (left/right/middle)
text_alignment=middle
# Focus style (sloppy/click)
focus_style=sloppy
raise_on_focus=false
focus_new=true
# Window placement (center_root/center_mouse)
window_placement=center_mouse
# Workspaces
workspace_count=4
# Colors for pixmaps which support recoloring
active_color_1=darkolivegreen3
active_shadow_1=darkolivegreen4
active_hilight_1=darkolivegreen1
active_color_2=gray80
active_shadow_2=gray60
active_hilight_2=gray100
inactive_color_1=grey70
inactive_shadow_1=gray50
inactive_hilight_1=gray100
inactive_color_2=gray80
inactive_shadow_2=gray60
inactive_hilight_2=gray100
# Desktop margins
top_margin=0
bottom_margin=20
left_margin=0
right_margin=0
# Keyboard bindings
#
# The first three characters represent the modifier mask
#
# *.. Shift
# .*. Ctrl
# ..* Alt
#
# Eg: move_up=.**Up
#
# This sets the key to move a window up to Ctrl+Alt+up arrow
#
# To disable a key set it equal to off
#
# Eg: key_shade=off
key_next_window=..*Tab
key_prev_window=*.*Tab
key_maximize=..*F2
key_shade=..*space
key_sticky=..*F3
key_hide=..*F1
key_close=..*F4
key_move_up=.**Up
key_move_down=.**Down
key_move_left=.**Left
key_move_right=.**Right
key_resize_up=*.*Up
key_resize_down=*.*Down
key_resize_left=*.*Left
key_resize_right=*.*Right
key_raise_layer=..*Page_Up
key_lower_layer=..*Page_Down
key_add_ws=..*Insert
key_del_ws=..*Delete
key_next_ws=..*End
key_prev_ws=..*Home
key_ws_1=..*KP_1
key_ws_2=..*KP_2
key_ws_3=..*KP_3
key_ws_4=..*KP_4
key_ws_5=..*KP_5
key_ws_6=..*KP_6
key_ws_7=..*KP_7
key_ws_8=..*KP_8
key_ws_9=..*KP_9
key_move_next_ws=.**End
key_move_prev_ws=.**Home
key_move_ws_1=.**KP_1
key_move_ws_2=.**KP_2
key_move_ws_3=.**KP_3
key_move_ws_4=.**KP_4
key_move_ws_5=.**KP_5
key_move_ws_6=.**KP_6
key_move_ws_7=.**KP_7
key_move_ws_8=.**KP_8
key_move_ws_9=.**KP_9
|