config.ini (3407B)
1 ;========================================================== 2 ; 3 ; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ 4 ; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ 5 ; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ 6 ; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ 7 ; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ 8 ; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ 9 ; 10 ;========================================================== 11 12 [colors] 13 background = #1e1e2e 14 background-alt = #585880 15 foreground = #622a9b 16 underline = #3C3C5C 17 primary = #701acb 18 secondary = #8ABEB7 19 alert = #A54242 20 disabled = #707880 21 22 [bar/example] 23 width = 100% 24 height = 18pt 25 radius = 0 26 27 background = ${colors.background} 28 foreground = ${colors.foreground} 29 30 line-size = 2pt 31 32 border-size = 2pt 33 border-color = #00000000 34 35 padding-left = 0 36 padding-right = 1 37 38 module-margin = 1 39 40 separator = | 41 separator-foreground = ${colors.disabled} 42 43 font-0 = monospace;2 44 45 modules-left = xworkspaces xwindow 46 modules-right = pulseaudio xkeyboard cpu memory tray date 47 48 cursor-click = pointer 49 cursor-scroll = ns-resize 50 51 enable-ipc = true 52 53 [module/systray] 54 type = internal/tray 55 56 format-margin = 0pt 57 tray-spacing = 0pt 58 59 [module/tray] 60 type = internal/tray 61 62 tray-size = 20 63 format-margin = 8px 64 tray-spacing = 8px 65 66 [module/xworkspaces] 67 type = internal/xworkspaces 68 69 label-active = %name% 70 label-active-background = ${colors.background-alt} 71 label-active-underline= ${colors.underline} 72 label-active-padding = 1 73 74 label-occupied = %name% 75 label-occupied-padding = 1 76 77 label-urgent = %name% 78 label-urgent-background = ${colors.alert} 79 label-urgent-padding = 1 80 81 label-empty = %name% 82 label-empty-foreground = ${colors.disabled} 83 label-empty-padding = 1 84 85 [module/xwindow] 86 type = internal/xwindow 87 label = %title:0:50:...% 88 89 [module/pulseaudio] 90 type = internal/pulseaudio 91 92 format-volume-prefix = "VOL " 93 format-volume-prefix-foreground = ${colors.primary} 94 format-volume = <label-volume> 95 96 label-volume = %percentage%% 97 98 label-muted = muted 99 label-muted-foreground = ${colors.disabled} 100 101 [module/xkeyboard] 102 type = internal/xkeyboard 103 blacklist-0 = num lock 104 105 label-layout = %layout% 106 label-layout-foreground = ${colors.primary} 107 108 label-indicator-padding = 2 109 label-indicator-margin = 1 110 label-indicator-foreground = ${colors.background} 111 label-indicator-background = ${colors.secondary} 112 113 [module/memory] 114 type = internal/memory 115 interval = 2 116 format-prefix = "RAM " 117 format-prefix-foreground = ${colors.primary} 118 label = %percentage_used:2%% 119 120 [module/cpu] 121 type = internal/cpu 122 interval = 2 123 format-prefix = "CPU " 124 format-prefix-foreground = ${colors.primary} 125 label = %percentage:2%% 126 127 128 [module/date] 129 type = internal/date 130 interval = 1 131 132 date = %H:%M 133 date-alt = %d-%m-%Y %H:%M:%S 134 135 label = %date% 136 label-foreground = ${colors.primary} 137 138 [settings] 139 screenchange-reload = true 140 pseudo-transparency = true 141 142 ; vim:ft=dosini