.concession
.config
bspwm
concession
conky
conky.conf
dunst
htop
i3
liferea
nitrogen
plasma-workspace
polybar
rofi
sxhkd
xob
xrdb
compton.conf
kglobalshortcutsrc
konsolerc
kscreenlockerrc
ksplashrc
redshift.conf
startupconfig
.local
.ssh
.themes
.vim
.bashrc
.gitconfig
.gitmodules
.kshrc
.profile
.vimrc
.xinitrc
.zshrc
82 lines
3.0 KiB
Lua
82 lines
3.0 KiB
Lua
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
|
|
|
|
conky.config = {
|
|
own_window = true,
|
|
own_window_title = 'Conky',
|
|
own_window_class = 'Conky',
|
|
own_window_type = 'desktop',
|
|
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
|
own_window_colour = '282828',
|
|
|
|
double_buffer = true,
|
|
cpu_avg_samples = 2,
|
|
net_avg_samples = 2,
|
|
no_buffers = true,
|
|
update_interval = 1,
|
|
|
|
use_xft = true,
|
|
font = 'Inconsolata:style=Light:size=10',
|
|
default_color = '#ebdbb2',
|
|
color1 = '282828', -- Background
|
|
color2 = 'ebdbb2', -- Foreground
|
|
color3 = '3c3836', -- Background-alt
|
|
color4 = 'b8bb26', -- Green (Battery)
|
|
color6 = '8ec07c', -- Cyan (Network)
|
|
color7 = 'fabd2f', -- Yellow (Disk)
|
|
color8 = '83a598', -- Blue (CPU)
|
|
color9 = 'd3869b', -- Magenta (Memory)
|
|
|
|
alignment = 'bottom_right',
|
|
xinerama_head = 2,
|
|
minimum_height = 0,
|
|
minimum_width = 304,
|
|
border_width = 6,
|
|
gap_x = 30,
|
|
gap_y = 64,
|
|
|
|
format_human_readable = true,
|
|
if_up_strictness = "link",
|
|
|
|
default_bar_height = 11,
|
|
default_bar_width = 130,
|
|
default_graph_height = 30,
|
|
draw_outline = false,
|
|
draw_graph_borders = false,
|
|
draw_shades = false
|
|
}
|
|
|
|
conky.text = [[
|
|
${image ~/.face -s 64x64}${font Inconsolata:style=Medium:size=30}$alignr${no_update $nodename_short}$font
|
|
${font Inconsolata:style=Light:size=17}$alignr${time %I:%M %p}$font
|
|
${font Inconsolata:style=Light:size=12}$alignr${time %A, %B %d, %Y}$font
|
|
${color3}$hr$color
|
|
${font Inconsolata:style=Medium:size=10}CPU$font: $freq_g GHz$alignr$cpu%
|
|
${color8}${cpugraph cpu1 30,200} ${cpugraph cpu2 30,200}
|
|
${cpugraph cpu3 30,200} ${cpugraph cpu4 30,200}$color
|
|
${color3}$hr$color
|
|
${font Inconsolata:style=Medium:size=10}Memory$font: $mem / $memmax used$alignr$memperc%
|
|
${color9}${memgraph}$color
|
|
Memory$alignr$memeasyfree free ${color9}${membar}$color
|
|
Swap$alignr$swapfree ${color9}${swapbar}$color
|
|
${color3}$hr$color
|
|
${font Inconsolata:style=Medium:size=10}Disk$font (R/W):$alignr${diskio /dev/sda}
|
|
${color7}${diskiograph_read /dev/sda 30,200} ${diskiograph_write /dev/sda 30,200}$color
|
|
/$alignr${fs_free /} ${color7}${fs_bar /}$color
|
|
/home$alignr${fs_free /home} ${color7}${fs_bar /home}$color
|
|
/boot$alignr${fs_free /boot} ${color7}${fs_bar /boot}$color
|
|
/boot/efi$alignr${fs_free /boot/efi} ${color7}${fs_bar /boot/efi}$color
|
|
${color3}$hr$color
|
|
${font Inconsolata:style=Medium:size=10}Network$font:${alignr}Default $gw_iface${if_up wlp1s0}
|
|
wlp1s0 (U/D):$alignr${addr wlp1s0} / ${wireless_essid wlp1s0}
|
|
${color6}${upspeedgraph wlp1s0 30,200} ${downspeedgraph wlp1s0 30,200}$color$endif${if_up wlp5s0}
|
|
wlp5s0 (U/D):$alignr${addr wlp5s0} / ${wireless_essid wlp5s0}
|
|
${color6}${upspeedgraph wlp5s0 30,200} ${downspeedgraph wlp5s0 30,200}$color$endif${if_up enp0s31f6}
|
|
enp0s31f6 (U/D):$alignr${addr enp0s31f6}
|
|
${color6}${upspeedgraph enp0s31f6 30,200} ${downspeedgraph enp0s31f6 30,200}$color$endif${if_up eno1}
|
|
eno1 (U/D):$alignr${addr eno1}
|
|
${color6}${upspeedgraph eno1 30,200} ${downspeedgraph eno1 30,200}$color$endif${if_up enp0s20f0u2}
|
|
enp0s20f0u2 (U/D):$alignr${addr enp0s20f0u2}
|
|
${color6}${upspeedgraph enp0s20f0u2 30,200} ${downspeedgraph enp0s20f0u2 30,200}$color$endif
|
|
]]
|
|
|