d0tfiles

*nix dotfiles for arch linux setup
Log | Files | Refs | README | LICENSE

bars.ini (15304B)


      1 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
      2 ;;
      3 ;;	    ____                 
      4 ;;	   / __ )____ ___________
      5 ;;	  / __  / __ `/ ___/ ___/
      6 ;;	 / /_/ / /_/ / /  (__  ) 
      7 ;;	/_____/\__,_/_/  /____/  
      8 ;;
      9 ;; Created By Aditya Shakya @adi1090x
     10 ;;
     11 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
     12 
     13 [module/volume]
     14 type = internal/alsa
     15 
     16 ; Soundcard to be used
     17 ; Usually in the format hw:# where # is the card number
     18 ; You can find the different card numbers in `/proc/asound/cards`
     19 ;;master-soundcard = default
     20 ;;speaker-soundcard = default
     21 ;;headphone-soundcard = default
     22 
     23 ; Name of the master, speaker and headphone mixers
     24 ; Use the following command to list available mixer controls:
     25 ; $ amixer scontrols | sed -nr "s/.*'([[:alnum:]]+)'.*/\1/p"
     26 ; If master, speaker or headphone-soundcard isn't the default, 
     27 ; use `amixer -c # scontrols` instead where # is the number 
     28 ; of the master, speaker or headphone soundcard respectively
     29 ;
     30 ; Default: Master
     31 ;;master-mixer = Master
     32 
     33 ; Optionally define speaker and headphone mixers
     34 ; Default: none
     35 ;;speaker-mixer = Speaker
     36 ; Default: none
     37 ;;headphone-mixer = Headphone
     38 
     39 ; NOTE: This is required if headphone_mixer is defined
     40 ; Use the following command to list available device controls
     41 ; $ amixer controls | sed -r "/CARD/\!d; s/.*=([0-9]+).*name='([^']+)'.*/printf '%3.0f: %s\n' '\1' '\2'/e" | sort
     42 ; You may also need to use `amixer -c # controls` as above for the mixer names
     43 ; Default: none
     44 ;;headphone-id = 9
     45 
     46 ; Use volume mapping (similar to amixer -M and alsamixer), where the increase in volume is linear to the ear
     47 ; Default: false
     48 ;;mapped = true
     49 
     50 ; Interval for volume increase/decrease (in percent points)
     51 ; Default: 5
     52 ;;interval = 5
     53 
     54 ; Available tags:
     55 ;   <label-volume> (default)
     56 ;   <ramp-volume>
     57 ;   <bar-volume>
     58 format-volume = <ramp-volume> <bar-volume>
     59 
     60 ; Available tags:
     61 ;   <label-muted> (default)
     62 ;   <ramp-volume>
     63 ;   <bar-volume>
     64 format-muted = <label-muted>
     65 
     66 ; Available tokens:
     67 ;   %percentage% (default)
     68 label-volume = %percentage%%
     69 
     70 ; Available tokens:
     71 ;   %percentage% (default
     72 format-muted-prefix = 
     73 format-muted-prefix-foreground = ${color.AC}
     74 label-muted = " Muted"
     75 ;label-muted-foreground = ${color.AC}
     76 
     77 ; Only applies if <ramp-volume> is used
     78 ramp-volume-0 = 
     79 ramp-volume-1 = 
     80 ramp-volume-2 = 
     81 ramp-volume-3 = 
     82 ramp-volume-4 = 
     83 ramp-volume-foreground = ${color.BLUE}
     84 
     85 ; Only applies if <bar-volume> is used
     86 bar-volume-width = 10
     87 bar-volume-gradient = false
     88 
     89 bar-volume-indicator = 
     90 bar-volume-indicator-foreground = ${color.AC}
     91 bar-volume-indicator-font = 2
     92 
     93 bar-volume-fill = ━
     94 bar-volume-foreground-0 = ${color.BLUE}
     95 bar-volume-foreground-1 = ${color.BLUE}
     96 bar-volume-foreground-2 = ${color.BLUE}
     97 bar-volume-foreground-3 = ${color.BLUE}
     98 bar-volume-foreground-4 = ${color.BLUE}
     99 bar-volume-foreground-5 = ${color.BLUE}
    100 bar-volume-foreground-6 = ${color.BLUE}
    101 bar-volume-foreground-7 = ${color.BLUE}
    102 bar-volume-foreground-8 = ${color.BLUE}
    103 bar-volume-fill-font = 2
    104 
    105 bar-volume-empty = ┉
    106 bar-volume-empty-foreground = ${color.FG}
    107 bar-volume-empty-font = 2
    108 
    109 ; If defined, it will replace <ramp-volume> when
    110 ; headphones are plugged in to `headphone_control_numid`
    111 ; If undefined, <ramp-volume> will be used for both
    112 ; Only applies if <ramp-volume> is used
    113 ramp-headphones-0 = 
    114 ramp-headphones-1 = 
    115 
    116 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    117 
    118 [module/brightness]
    119 type = internal/xbacklight
    120 
    121 ; Use the following command to list available cards:
    122 ; $ ls -1 /sys/class/backlight/
    123 card = intel_backlight
    124 
    125 ; Available tags:
    126 ;   <label> (default)
    127 ;   <ramp>
    128 ;   <bar>
    129 format = <ramp> <bar>
    130 
    131 ; Available tokens:
    132 ;   %percentage% (default)
    133 label = %percentage%%
    134 
    135 ; Only applies if <ramp> is used
    136 
    137 ramp-0 = 
    138 ramp-1 = 
    139 ramp-2 = 
    140 ramp-3 = 
    141 ramp-4 = 
    142 ramp-foreground = ${color.PURPLE}
    143 
    144 ;; Other Icons
    145 ;
    146 
    147 ; Only applies if <bar> is used
    148 bar-width = 10
    149 bar-gradient = false
    150 
    151 bar-indicator = 
    152 bar-indicator-foreground = ${color.AC}
    153 bar-indicator-font = 2
    154 
    155 bar-fill = ━
    156 bar-foreground-0 = ${color.PURPLE}
    157 bar-foreground-1 = ${color.PURPLE}
    158 bar-foreground-2 = ${color.PURPLE}
    159 bar-foreground-3 = ${color.PURPLE}
    160 bar-foreground-4 = ${color.PURPLE}
    161 bar-foreground-5 = ${color.PURPLE}
    162 bar-foreground-6 = ${color.PURPLE}
    163 bar-foreground-7 = ${color.PURPLE}
    164 bar-foreground-8 = ${color.PURPLE}
    165 bar-fill-font = 2
    166 
    167 bar-empty = ┉
    168 bar-empty-foreground = ${color.FG}
    169 bar-empty-font = 2
    170 
    171 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    172 
    173 [module/battery_bar]
    174 type = internal/battery
    175 
    176 ; This is useful in case the battery never reports 100% charge
    177 full-at = 99
    178 
    179 ; Use the following command to list batteries and adapters:
    180 ; $ ls -1 /sys/class/power_supply/
    181 battery = BAT1
    182 adapter = ACAD
    183 
    184 ; If an inotify event haven't been reported in this many
    185 ; seconds, manually poll for new values.
    186 ;
    187 ; Needed as a fallback for systems that don't report events
    188 ; on sysfs/procfs.
    189 ;
    190 ; Disable polling by setting the interval to 0.
    191 ;
    192 ; Default: 5
    193 poll-interval = 2
    194 
    195 ; see "man date" for details on how to format the time string
    196 ; NOTE: if you want to use syntax tags here you need to use %%{...}
    197 ; Default: %H:%M:%S
    198 time-format = %H:%M
    199 
    200 ; Available tags:
    201 ;   <label-charging> (default)
    202 ;   <bar-capacity>
    203 ;   <ramp-capacity>
    204 ;   <animation-charging>
    205 format-charging = <bar-capacity>
    206 format-charging-prefix = " "
    207 format-charging-prefix-foreground = ${color.GREEN}
    208 
    209 ; Available tags:
    210 ;   <label-discharging> (default)
    211 ;   <bar-capacity>
    212 ;   <ramp-capacity>
    213 ;   <animation-discharging>
    214 format-discharging = <bar-capacity>
    215 format-discharging-prefix = " "
    216 format-discharging-prefix-foreground = ${color.LIME}
    217 
    218 ; Available tags:
    219 ;   <label-full> (default)
    220 ;   <bar-capacity>
    221 ;   <ramp-capacity>
    222 ;format-full = <ramp-capacity> <label-full>
    223 
    224 ; Available tokens:
    225 ;   %percentage% (default)
    226 ;   %time%
    227 ;   %consumption% (shows current charge rate in watts)
    228 
    229 label-charging = %percentage%%
    230 
    231 ; Available tokens:
    232 ;   %percentage% (default)
    233 ;   %time%
    234 ;   %consumption% (shows current discharge rate in watts)
    235 label-discharging = %percentage%%
    236 
    237 ; Available tokens:
    238 ;   %percentage% (default)
    239 label-full = Fully Charged
    240 
    241 ; Only applies if <bar-capacity> is used
    242 bar-capacity-width = 10
    243 bar-capacity-gradient = false
    244 
    245 bar-capacity-indicator = 
    246 bar-capacity-indicator-foreground = ${color.AC}
    247 bar-capacity-indicator-font = 2
    248 
    249 bar-capacity-fill = ━
    250 bar-capacity-foreground-0 = ${color.LIME}
    251 bar-capacity-foreground-1 = ${color.LIME}
    252 bar-capacity-foreground-2 = ${color.LIME}
    253 bar-capacity-foreground-3 = ${color.LIME}
    254 bar-capacity-foreground-4 = ${color.LIME}
    255 bar-capacity-foreground-5 = ${color.LIME}
    256 bar-capacity-foreground-6 = ${color.LIME}
    257 bar-capacity-foreground-7 = ${color.LIME}
    258 bar-capacity-foreground-8 = ${color.LIME}
    259 bar-capacity-fill-font = 2
    260 
    261 bar-capacity-empty = ┉
    262 bar-capacity-empty-foreground = ${color.FG}
    263 bar-capacity-empty-font = 2
    264 
    265 ; Only applies if <ramp-capacity> is used
    266 ramp-capacity-0 = 
    267 ramp-capacity-1 = 
    268 ramp-capacity-2 = 
    269 ramp-capacity-3 = 
    270 ramp-capacity-4 = 
    271 ramp-capacity-5 = 
    272 ramp-capacity-6 = 
    273 ramp-capacity-7 = 
    274 ramp-capacity-8 = 
    275 ramp-capacity-9 = 
    276 ramp-capacity-foreground = ${color.LIME}
    277 
    278 ; Only applies if <animation-charging> is used
    279 animation-charging-0 = 
    280 animation-charging-1 = 
    281 animation-charging-2 = 
    282 animation-charging-3 = 
    283 animation-charging-4 = 
    284 animation-charging-5 = 
    285 animation-charging-6 = 
    286 animation-charging-7 = 
    287 animation-charging-8 = 
    288 animation-charging-foreground = ${color.GREEN}
    289 
    290 ; Framerate in milliseconds
    291 animation-charging-framerate = 750
    292 
    293 ; Only applies if <animation-discharging> is used
    294 ;;animation-discharging-0 = 
    295 ;;animation-discharging-1 = 
    296 ;;animation-discharging-2 = 
    297 ;;animation-discharging-3 = 
    298 ;;animation-discharging-4 = 
    299 ;;animation-discharging-5 = 
    300 ;;animation-discharging-6 = 
    301 ;;animation-discharging-7 = 
    302 ;;animation-discharging-8 = 
    303 
    304 ; Framerate in milliseconds
    305 ;animation-discharging-framerate = 500
    306 
    307 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    308 
    309 [module/cpu_bar]
    310 type = internal/cpu
    311 
    312 ; Seconds to sleep between updates
    313 ; Default: 1
    314 interval = 0.5
    315 
    316 ; Available tags:
    317 ;   <label> (default)
    318 ;   <bar-load>
    319 ;   <ramp-load>
    320 ;   <ramp-coreload>
    321 ;;format = <label> <ramp-coreload>
    322 format = <bar-load> <label>
    323 format-prefix = " "
    324 format-prefix-foreground = ${color.GREEN}
    325 
    326 ; Available tokens:
    327 ;   %percentage% (default) - total cpu load averaged over all cores
    328 ;   %percentage-sum% - Cumulative load on all cores
    329 ;   %percentage-cores% - load percentage for each core
    330 ;   %percentage-core[1-9]% - load percentage for specific core
    331 label = "%percentage%%"
    332 
    333 ; Only applies if <bar-load> is used
    334 bar-load-width = 10
    335 bar-load-gradient = false
    336 
    337 bar-load-indicator = 
    338 bar-load-indicator-foreground = ${color.AC}
    339 bar-load-indicator-font = 2
    340 
    341 bar-load-fill = ━
    342 bar-load-foreground-0 = ${color.GREEN}
    343 bar-load-foreground-1 = ${color.GREEN}
    344 bar-load-foreground-2 = ${color.GREEN}
    345 bar-load-foreground-3 = ${color.GREEN}
    346 bar-load-foreground-4 = ${color.GREEN}
    347 bar-load-foreground-5 = ${color.GREEN}
    348 bar-load-foreground-6 = ${color.GREEN}
    349 bar-load-foreground-7 = ${color.GREEN}
    350 bar-load-foreground-8 = ${color.GREEN}
    351 bar-load-fill-font = 2
    352 
    353 bar-load-empty = ┉
    354 bar-load-empty-foreground = ${color.FG}
    355 bar-load-empty-font = 2
    356 
    357 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    358 
    359 [module/filesystem_bar]
    360 type = internal/fs
    361 
    362 ; Mountpoints to display
    363 mount-0 = /
    364 ;;mount-1 = /home
    365 ;;mount-2 = /var
    366 
    367 ; Seconds to sleep between updates
    368 ; Default: 30
    369 interval = 10
    370 
    371 ; Display fixed precision values
    372 ; Default: false
    373 fixed-values = false
    374 
    375 ; Spacing between entries
    376 ; Default: 2
    377 ;;spacing = 4
    378 
    379 ; Available tags:
    380 ;   <label-mounted> (default)
    381 ;   <bar-free>
    382 ;   <bar-used>
    383 ;   <ramp-capacity>
    384 format-mounted = <bar-used> <label-mounted>
    385 format-mounted-prefix = " "
    386 format-mounted-prefix-foreground = ${color.CYAN}
    387 
    388 ; Available tags:
    389 ;   <label-unmounted> (default)
    390 ;;format-unmounted = <label-unmounted>
    391 ;;format-unmounted-prefix = 
    392 
    393 ; Available tokens:
    394 ;   %mountpoint%
    395 ;   %type%
    396 ;   %fsname%
    397 ;   %percentage_free%
    398 ;   %percentage_used%
    399 ;   %total%
    400 ;   %free%
    401 ;   %used%
    402 ; Default: %mountpoint% %percentage_free%%
    403 label-mounted = %used%/%total%
    404 
    405 ; Available tokens:
    406 ;   %mountpoint%
    407 ; Default: %mountpoint% is not mounted
    408 ;;label-unmounted = %mountpoint%: not mounted
    409 
    410 ; Only applies if <bar-used> is used
    411 bar-used-width = 10
    412 bar-used-gradient = false
    413 
    414 bar-used-indicator = 
    415 bar-used-indicator-foreground = ${color.AC}
    416 bar-used-indicator-font = 2
    417 
    418 bar-used-fill = ━
    419 bar-used-foreground-0 = ${color.CYAN}
    420 bar-used-foreground-1 = ${color.CYAN}
    421 bar-used-foreground-2 = ${color.CYAN}
    422 bar-used-foreground-3 = ${color.CYAN}
    423 bar-used-foreground-4 = ${color.CYAN}
    424 bar-used-foreground-5 = ${color.CYAN}
    425 bar-used-foreground-6 = ${color.CYAN}
    426 bar-used-foreground-7 = ${color.CYAN}
    427 bar-used-foreground-8 = ${color.CYAN}
    428 bar-used-fill-font = 2
    429 
    430 bar-used-empty = ┉
    431 bar-used-empty-foreground = ${color.FG}
    432 bar-used-empty-font = 2
    433 
    434 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    435 
    436 [module/memory_bar]
    437 type = internal/memory
    438 
    439 ; Seconds to sleep between updates
    440 ; Default: 1
    441 interval = 2
    442 
    443 ; Available tags:
    444 ;   <label> (default)
    445 ;   <bar-used>
    446 ;   <bar-free>
    447 ;   <ramp-used>
    448 ;   <ramp-free>
    449 ;   <bar-swap-used>
    450 ;   <bar-swap-free>
    451 ;   <ramp-swap-used>
    452 ;   <ramp-swap-free>
    453 format = <bar-used> <label>
    454 format-prefix = " "
    455 format-prefix-foreground = ${color.YELLOW}
    456 
    457 ; Available tokens:
    458 ;   %percentage_used% (default)
    459 ;   %percentage_free%
    460 ;   %gb_used%
    461 ;   %gb_free%
    462 ;   %gb_total%
    463 ;   %mb_used%
    464 ;   %mb_free%
    465 ;   %mb_total%
    466 ;   %percentage_swap_used%
    467 ;   %percentage_swap_free%
    468 ;   %mb_swap_total%
    469 ;   %mb_swap_free%
    470 ;   %mb_swap_used%
    471 ;   %gb_swap_total%
    472 ;   %gb_swap_free%
    473 ;   %gb_swap_used%
    474 
    475 label = "%mb_used%"
    476 
    477 ; Only applies if <bar-used> is used
    478 bar-used-width = 10
    479 bar-used-gradient = false
    480 
    481 bar-used-indicator = 
    482 bar-used-indicator-foreground = ${color.AC}
    483 bar-used-indicator-font = 2
    484 
    485 bar-used-fill = ━
    486 bar-used-foreground-0 = ${color.YELLOW}
    487 bar-used-foreground-1 = ${color.YELLOW}
    488 bar-used-foreground-2 = ${color.YELLOW}
    489 bar-used-foreground-3 = ${color.YELLOW}
    490 bar-used-foreground-4 = ${color.YELLOW}
    491 bar-used-foreground-5 = ${color.YELLOW}
    492 bar-used-foreground-6 = ${color.YELLOW}
    493 bar-used-foreground-7 = ${color.YELLOW}
    494 bar-used-foreground-8 = ${color.YELLOW}
    495 bar-used-fill-font = 2
    496 
    497 bar-used-empty = ┉
    498 bar-used-empty-foreground = ${color.FG}
    499 bar-used-empty-font = 2
    500 
    501 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    502 
    503 [module/mpd_bar]
    504 type = internal/mpd
    505 
    506 ; Host where mpd is running (either ip or domain name)
    507 ; Can also be the full path to a unix socket where mpd is running.
    508 ;;host = 127.0.0.1
    509 ;;port = 6600
    510 ;;password = mysecretpassword
    511 
    512 ; Seconds to sleep between progressbar/song timer sync
    513 ; Default: 1
    514 interval = 1
    515 
    516 ; Available tags:
    517 ;   <label-song> (default)
    518 ;   <label-time>
    519 ;   <bar-progress>
    520 ;   <toggle> - gets replaced with <icon-(pause|play)>
    521 ;   <toggle-stop> - gets replaced with <icon-(stop|play)>
    522 ;   <icon-random>
    523 ;   <icon-repeat>
    524 ;   <icon-repeatone> (deprecated)
    525 ;   <icon-single> - Toggle playing only a single song. Replaces <icon-repeatone>
    526 ;   <icon-consume>
    527 ;   <icon-prev>
    528 ;   <icon-stop>
    529 ;   <icon-play>
    530 ;   <icon-pause>
    531 ;   <icon-next>
    532 ;   <icon-seekb>
    533 ;   <icon-seekf>
    534 format-online = <label-song> <bar-progress> <label-time> 
    535 format-online-prefix = " "
    536 format-online-prefix-foreground = ${color.RED}
    537 
    538 ;format-playing = ${self.format-online}
    539 ;format-paused = ${self.format-online}
    540 ;format-stopped = ${self.format-online}
    541 
    542 ; Available tags:
    543 ;   <label-offline>
    544 ;format-offline = <label-offline>
    545 
    546 ; Available tokens:
    547 ;   %artist%
    548 ;   %album-artist%
    549 ;   %album%
    550 ;   %date%
    551 ;   %title%
    552 ; Default: %artist% - %title%
    553 label-song =  "%title%"
    554 label-song-maxlen = 25
    555 label-song-ellipsis = true
    556 
    557 ; Available tokens:
    558 ;   %elapsed%
    559 ;   %total%
    560 ; Default: %elapsed% / %total%
    561 ;;abel-time = %elapsed% / %total%
    562 
    563 ; Available tokens:
    564 ;   None
    565 label-offline = "mpd is offline"
    566 
    567 ; Only applies if <icon-X> is used
    568 icon-play = 
    569 icon-pause = 
    570 icon-stop = 
    571 icon-prev = 
    572 icon-next = 
    573 icon-seekb = ⏪
    574 icon-seekf = ⏩
    575 icon-random = 🔀
    576 icon-repeat = 🔁
    577 icon-repeatone = 🔂
    578 icon-single = 🔂
    579 icon-consume = ✀
    580 
    581 ; Used to display the state of random/repeat/repeatone/single
    582 ; Only applies if <icon-[random|repeat|repeatone|single]> is used
    583 ;;toggle-on-foreground = #ff
    584 ;;toggle-off-foreground = #55
    585 
    586 ; Only applies if <bar-progress> is used
    587 bar-progress-width = 10
    588 bar-progress-gradient = true
    589 
    590 bar-progress-indicator = 
    591 bar-progress-indicator-foreground = ${color.AC}
    592 bar-progress-indicator-font = 2
    593 
    594 bar-progress-fill = ━
    595 bar-progress-foreground-0 = ${color.RED}
    596 bar-progress-foreground-1 = ${color.RED}
    597 bar-progress-foreground-2 = ${color.RED}
    598 bar-progress-foreground-3 = ${color.RED}
    599 bar-progress-foreground-4 = ${color.RED}
    600 bar-progress-foreground-5 = ${color.RED}
    601 bar-progress-foreground-6 = ${color.RED}
    602 bar-progress-foreground-7 = ${color.RED}
    603 bar-progress-foreground-8 = ${color.RED}
    604 bar-progress-fill-font = 2
    605 
    606 bar-progress-empty = ┉
    607 bar-progress-empty-foreground = ${color.FG}
    608 bar-progress-empty-font = 2
    609 
    610 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
    611 ;;	    __________  ______
    612 ;;	   / ____/ __ \/ ____/
    613 ;;	  / __/ / / / / /_    
    614 ;;	 / /___/ /_/ / __/    
    615 ;;	/_____/\____/_/       
    616 ;;
    617 ;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_