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 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# 3ddesktop configuration
#
# Use this file to set various "views".
#
# Format:
# view <viewname1>
# option1 <value1>
# option2 <value2>
# ...
#
# view <viewname2>
# option1 <value1>
# option2 <value2>
# ...
# etc
#
#
# Global options (effect every view and program as whole)
#
# wm - Specify which window manager you are using. Options are:
#
# kde2, kde3, gnome1, gnome2, ewmh, fluxbox, windowmaker,
# enlightenment, sawfishonly, workspaces
#
# The default should work for Gnome 1.x/2.x, Kde 3.x, Windowmaker, &
# Enlightenment but use wm for kde2, fluxbox or workspaces.
#
# texturesize - resolution of textures (power of 2, as in 128, 256, 512, 1024)
# default 1024
# win - open in a window rather then fullscreen
# (for debuggin: not really usable at this time)
# early_desktop_switch - When desktop is switched (default true)
# disable_keys_in_goto - Disable keys while in an automated "goto" (default true)
# compression - enables texture compression, not all cards support it
# autoacquire - Set the number of seconds between screen captures by the server
# zero to disable
# priority - set the nice value of the server (default is 12)
#
# Examples (uncomment to use)
#
#texturesize 512
#wm kde2
#
# Indicate which "view" to use on the command line with --view=<viewname>.
# Other options on the command line are ignored if a view is given.
#
# Options (all must be lowercase)
#
# mode - set the "arrangement", one of carousel (default), linear,
# cylinder, viewmaster, carousel, priceisright, flip
# show_digit - show a digit indicating the current desktop/workspace
# digit_size - width of digit on screen
# digit_color - color of digit (red, green, blue, lightblue, white, gray,
# purple, yellow)
# frame_color - color of un-cached desktops (the frame)
# use_wireframe - if true draw a wireframe for uncached faces (default true)
# randdelay - delay before random movement (zero for no movement)
# fastest - hog CPU for smooth movement
# zoom - set to one or zero to zoom out or not to zoom out
# (default is zoom out).
# nozoom - set to zero or one to zoom out or not to zoom out
# (default is zoom out).
# depth - how far to "zoom-out"
# gotoright - goto desktop to the right
# gotoleft - goto desktop to the left
# gotoup - goto desktop above
# gotodown - goto desktop below
# gotocolumn - goto desktop to the specified column
# gotorow - goto desktop to the specified row
# dontexit - don't exit after an automated goto operation
# linear_spacing - space between desktops in "linear" mode (default 2.0)
# use_breathing - turn on/off the ambient light dimming
# animation_speed - number of milliseconds between animation steps
# changespeed - how fast the rotation or sliding of faces takes
# zoomspeed - how fast it zooms in and out from start
# reverse_mousewheel - mouse wheel up and down reversion
# swap_mousebuttons - swap left and right buttons on mouse
# alt_mousebuttons - mouse button 1 activates, 2 goes back and exits,
# 3 goes back, 6 goes left, 7 goes right.
#
# Example views (use by doing: '3ddesk --view=<viewname>')
#
view default ## this is the default if no --view specified
zoom on
show_digit on
digit_size 100
digit_color green
use_breathing false
view goright
zoom off
mode cylinder
gotoright on
view goleft
zoom off
mode cylinder
gotoleft on
view slide
zoom off
mode linear
digit_size 100
digit_color gray
linear_spacing 0.0
view nozoom
zoom off
mode viewmaster
digit_size 100
digit_color gray
view linear
mode linear
digit_color yellow
linear_spacing 0.0
view linearzip
mode linear
linear_spacing 19.0
depth 5
digit_size 200
digit_color blue
view bigmoney
mode priceisright
depth 10
digit_color purple
digit_size 150
|