settings 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. # Directory containing X sessions
  2. x_sessions = "/etc/X11/Sessions/"
  3. # Directory containing text mode sessions
  4. text_sessions = "/etc/qingy/sessions/"
  5. # Directory where qingy should put its temporary files
  6. temp_files_dir = "/tmp"
  7. # Where are the themes?
  8. themes_dir = "/usr/share/qingy/themes"
  9. # Full path to the X server
  10. # x_server = "/usr/X11R6/bin/XFree86"
  11. # Full path to the 'xinit' executable
  12. xinit = "/usr/bin/xinit"
  13. # Parameter we should pass to the X server
  14. x_args = "-nolisten tcp -br"
  15. # How verbose should qingy be?
  16. # Possible values are debug, error
  17. # Default value is error
  18. log_level = error
  19. # Where should qingy messages be logged?
  20. # Values can be one or more of the following:
  21. # console, file, syslog
  22. # Default value is console
  23. # log_facilities = console, file
  24. log_facilities = console, syslog
  25. # Offset to search for an available X server number.
  26. # This number affects the DISPLAY env variable.
  27. # Default is 1, setting it to 0 will make buggy OpenGL implementations
  28. # (like the ATI one) work with qingy, but it will also make it impossible
  29. # to start an X server from console using startx without passing it
  30. # extra parameters.
  31. #x_server_offset = 1
  32. # Where should we start the X server?
  33. # Accepted values are:
  34. # qingy_tty (default) to start it in the same tty qingy is running in
  35. # unused_tty to start it into an unused tty
  36. x_server_tty = qingy_tty
  37. # Scripts that should be executed just before/after qingy GUI is fired up/shut down
  38. pre_gui_script = "/etc/qingy/pre_GUI.sh"
  39. post_gui_script = "/etc/qingy/post_GUI.sh"
  40. # What theme do you want (you can also specify 'random')
  41. # theme = random
  42. theme = "default"
  43. # What happens when we press the 'sleep' button?
  44. #sleep = "/usr/local/sbin/hibernate"
  45. # whether we should clear background image during dialogs (default is no)...
  46. # this is the default setting, it gets overridden if the theme you are using
  47. # sets the same setting differently...
  48. # clear_background = yes
  49. # whether to allow session locking; if you enable this, when you try to
  50. # switch to a qingy-controlled tty whose owner is not your current
  51. # user, you will be asked for the password of that user before being
  52. # allowed to continue. If you are root, of course, you can switch
  53. # to any tty you chose to. Default setting is 'no'.
  54. #lock_sessions = yes
  55. # whether to allow session timeout; if you enable this, after the amount
  56. # of minutes specified in idle_timeout variable, idle_action will be
  57. # performed. Allowed actions are:
  58. # lock will lock user session asking you for your password
  59. # logout will close your session
  60. #idle_timeout = 30
  61. #idle_action = lock
  62. # prevent qingy from logging in user or firing up its GUI if system
  63. # is restarting / shutting down
  64. #check_runlevel = yes
  65. #exclude_runlevels = 0, 6
  66. keybindings
  67. {
  68. prev_tty = "win" # switch to left tty
  69. next_tty = "menu" # switch to right tty
  70. poweroff = "ALT-p" # shutdown your system
  71. reboot = "ALT-r" # restart your system
  72. screensaver = "ALT-s" # activate screen saver
  73. sleep = "ALT-z" # put machine to sleep
  74. kill = "CTRL-c" # kill qingy
  75. text_mode = "CTRL-ESC" # Revert to text mode
  76. }