1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| conky.config = { background = true, update_interval = 1, total_run_times = 0, own_window = true, own_window_type = 'desktop', own_window_transparent = true, own_window_argb_visual = true, own_window_argb_value = 0, double_buffer = true, draw_shades = false, draw_outline = false, draw_borders = false, alignment = 'top_right', gap_x = 30, gap_y = 60, minimum_width = 250, minimum_height = 400, default_color = 'white', use_xft = true, font = 'Ubuntu Mono:size=12', };
conky.text = [[ ${color cyan}日期时间:${time %Y-%m-%d %H:%M:%S} ${color cyan}主机名称:${nodename} ${color cyan}系统信息:${sysname} ${kernel} on ${machine} ${color cyan}运行时间:${uptime} ${color cyan}当前用户:${exec whoami} ${color white}------------------------------------------------------------ ${color red}CPU使用率:${cpu}% ${cpubar 6,150} ${color red}内存使用:${mem} / ${memmax} ${membar 6,150} ${color red}交换分区:${swap} / ${swapmax} ${swapbar 6,150} ${color white}------------------------------------------------------------ ${color blue}硬盘使用:${fs_used /} / ${fs_size /} ${fs_bar 6,150} ${color blue}当前显卡:${execi 60 glxinfo | grep | cut -d: -f2 | sed 's/^[ \t]*//'} ${color blue}当前桌面:${exec echo $XDG_SESSION_TYPE} ${color white}------------------------------------------------------------ ${color green}网络流量: ${color green}下载:${downspeed wlo1} kB/s 上传:${upspeed wlo1} kB/s ${color green}IP:${addr wlo1} ${color green}WiFi 状态 ${color green}SSID: ${exec nmcli -t -f active,ssid dev wifi | grep '^是' | cut -d: -f2} ${color green}信号强度: ${exec nmcli -t -f signal dev wifi | sort -nr | head -n 1}% ${color white}------------------------------------------------------------ ${color pink}屏幕亮度: ${exec brightnessctl g | awk '{print int($1/100 * 100) "%"}'} ${color pink}温度:${execi 10 sensors | grep 'Package id 0:' | cut -d' ' -f5}
# ${color pink}电池状态:${battery_short BAT0} ${battery_bar 6,150 BAT0}
${color pink}剩余电量:${battery_percent}% ${color pink}爱小旋的一天!!! ]];
|