dotfiles

Configs for programs I use!
git clone git://shipwreckt.co.uk/dotfiles.git
Log | Files | Refs | README | LICENSE

config.ini (4218B)


      1 # The active animation
      2 # none   -> Nothing (default)
      3 # doom   -> PSX DOOM fire
      4 # matrix -> CMatrix
      5 animation = matrix
      6 
      7 # Format string for clock in top right corner (see strftime specification). Example: %c
      8 clock = null
      9 
     10 # Enable/disable big clock
     11 bigclock = false
     12 
     13 # The character used to mask the password
     14 asterisk = *
     15 
     16 # Erase password input on failure
     17 clear_password = false
     18 
     19 # Enable vi keybindings
     20 vi_mode = false
     21 
     22 # The `fg` and `bg` color settings take a digit 0-8 corresponding to:
     23 #define TB_DEFAULT 0x00
     24 #define TB_BLACK   0x01
     25 #define TB_RED     0x02
     26 #define TB_GREEN   0x03
     27 #define TB_YELLOW  0x04
     28 #define TB_BLUE    0x05
     29 #define TB_MAGENTA 0x06
     30 #define TB_CYAN    0x07
     31 #define TB_WHITE   0x08
     32 #
     33 # Setting both to zero makes `bg` black and `fg` white. To set the actual color palette you are encouraged to use another tool 
     34 # such as [mkinitcpio-colors](https://github.com/evanpurkhiser/mkinitcpio-colors). Note that the color palette defined with 
     35 # `mkinitcpio-colors` takes 16 colors (0-15), only values 0-8 are valid for `ly` config and these values do not correspond 
     36 # exactly. For instance, in defining palettes with `mkinitcpio-colors` the order is black, dark red, dark green, brown, dark 
     37 # blue, dark purple, dark cyan, light gray, dark gray, bright red, bright green, yellow, bright blue, bright purple, bright 
     38 # cyan, and white, indexed in that order 0 through 15. For example, the color defined for white (indexed at 15 in the mkinitcpio 
     39 # config) will be used by `ly` for `fg = 8`.
     40 
     41 # Background color id
     42 bg = 0
     43 
     44 # Foreground color id
     45 fg = 3 
     46 
     47 # Border color
     48 border_fg = 3
     49 
     50 # Title to show at the top of the main box
     51 box_title = null
     52 
     53 # Initial text to show on the info line (Defaults to hostname)
     54 initial_info_text = null
     55 
     56 # Blank main box background
     57 # Setting to false will make it transparent
     58 blank_box = true
     59 
     60 # Remove main box borders
     61 hide_borders = false
     62 
     63 # Main box margins
     64 margin_box_h = 2
     65 margin_box_v = 1
     66 
     67 # Input boxes length
     68 input_len = 34
     69 
     70 # Max input sizes
     71 max_desktop_len = 100
     72 max_login_len = 255
     73 max_password_len = 255
     74 
     75 # Input box active by default on startup
     76 # Available inputs: session, login, password
     77 default_input = login
     78 
     79 # Load the saved desktop and username
     80 load = true
     81 
     82 # Save the current desktop and login as defaults
     83 save = true
     84 
     85 # Deprecated - Will be removed in a future version
     86 # New save files are now loaded from the same directory as the config
     87 # Currently used to migrate old save files to the new version
     88 # File in which to save and load the default desktop and login
     89 save_file = /etc/ly/save
     90 
     91 # Remove power management command hints
     92 hide_key_hints = false
     93 
     94 # Specifies the key used for shutdown (F1-F12)
     95 shutdown_key = F1
     96 
     97 # Specifies the key used for restart (F1-F12)
     98 restart_key = F2
     99 
    100 # Specifies the key used for sleep (F1-F12)
    101 sleep_key = F3
    102 
    103 # Command executed when pressing shutdown_key
    104 shutdown_cmd = /sbin/shutdown -a now
    105 
    106 # Command executed when pressing restart_key
    107 restart_cmd = /sbin/shutdown -r now
    108 
    109 # Command executed when pressing sleep key (can be null)
    110 sleep_cmd = null
    111 
    112 # Active language
    113 # Available languages are found in /etc/ly/lang/
    114 lang = en
    115 
    116 # TTY in use
    117 tty = 2
    118 
    119 # Console path
    120 console_dev = /dev/console
    121 
    122 # Default path. If null, ly doesn't set a path.
    123 path = /sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/sbin
    124 
    125 # Event timeout in milliseconds
    126 min_refresh_delta = 5
    127 
    128 # Set numlock on/off at startup
    129 numlock = false
    130 
    131 # Service name (set to ly to use the provided pam config file)
    132 service_name = ly
    133 
    134 # Terminal reset command (tput is faster)
    135 term_reset_cmd = /usr/bin/tput reset
    136 
    137 # Terminal restore cursor command
    138 term_restore_cursor_cmd = /usr/bin/tput cnorm
    139 
    140 # Cookie generator
    141 mcookie_cmd = /usr/bin/mcookie
    142 
    143 # Wayland setup command
    144 wayland_cmd = /etc/ly/wsetup.sh
    145 
    146 # Wayland desktop environments
    147 waylandsessions = /usr/share/wayland-sessions
    148 
    149 # xinitrc (hidden if null)
    150 xinitrc = ~/.config/X11/xinitrc
    151 
    152 # Xorg server command
    153 x_cmd = /usr/bin/X
    154 
    155 # Xorg setup command
    156 x_cmd_setup = /etc/ly/xsetup.sh
    157 
    158 # Xorg xauthority edition tool
    159 xauth_cmd = /usr/bin/xauth
    160 
    161 # Xorg desktop environments
    162 xsessions = /usr/share/xsessions
    163 
    164 # Brightness control
    165 brightness_down_key = F5
    166 brightness_up_key = F6
    167 Brightness_change = 10