[Shell] Personal dotfiles and scripts to deploy them.
Conky conf file.
conky.org
@@ -0,0 +1,85 @@
1
Added:
# -*- mode: org; -*-
2
Added:
3
Added:
#+TITLE: =Conky= configuration file
4
Added:
#+AUTHOR: Marius Peter
5
Added:
#+DATE: <2022-11-01 Tue>
6
Added:
7
Added:
#+PROPERTY: header-args :tangle "~/.config/conky/conky.conf"
8
Added:
9
Added:
10
Added:
* Configuration
11
Added:
12
Added:
#+begin_src lua
13
Added:
conky.config = {
14
Added:
alignment = 'top_left',
15
Added:
background = false,
16
Added:
border_width = 1,
17
Added:
cpu_avg_samples = 2,
18
Added:
default_color = 'white',
19
Added:
default_outline_color = 'white',
20
Added:
default_shade_color = 'white',
21
Added:
double_buffer = true,
22
Added:
draw_borders = false,
23
Added:
draw_graph_borders = true,
24
Added:
draw_outline = false,
25
Added:
draw_shades = false,
26
Added:
extra_newline = false,
27
Added:
font = 'Hack:size=16',
28
Added:
gap_x = 60,
29
Added:
gap_y = 60,
30
Added:
minimum_height = 5,
31
Added:
minimum_width = 5,
32
Added:
net_avg_samples = 2,
33
Added:
no_buffers = true,
34
Added:
out_to_console = false,
35
Added:
out_to_ncurses = false,
36
Added:
out_to_stderr = false,
37
Added:
out_to_x = true,
38
Added:
own_window = true,
39
Added:
own_window_class = 'Conky',
40
Added:
own_window_type = 'desktop',
41
Added:
own_window_transparent = true,
42
Added:
own_window_argb_visual = true,
43
Added:
show_graph_range = false,
44
Added:
show_graph_scale = false,
45
Added:
stippled_borders = 0,
46
Added:
update_interval = 1.0,
47
Added:
uppercase = false,
48
Added:
use_spacer = 'none',
49
Added:
use_xft = true,
50
Added:
}
51
Added:
#+end_src
52
Added:
53
Added:
54
Added:
* Conky content
55
Added:
56
Added:
#+begin_src lua :noweb yes
57
Added:
conky.text = [[
58
Added:
<<content>>
59
Added:
]]
60
Added:
#+end_src
61
Added:
62
Added:
#+NAME: content
63
Added:
#+begin_src lua :tangle no :exports none
64
Added:
${font Monoid:size=40}${time %H:%M}
65
Added:
$font${color grey}$color ${scroll 38 Conky $conky_version - $sysname $nodename $kernel $machine}
66
Added:
$hr
67
Added:
${color grey}Uptime:$color $uptime
68
Added:
${color grey}Frequency (in MHz):$color $freq
69
Added:
${color grey}Frequency (in GHz):$color $freq_g
70
Added:
${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
71
Added:
${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
72
Added:
${color grey}CPU Usage:$color $cpu% ${cpubar 4}
73
Added:
${color grey}Processes:$color $processes ${color grey}Running:$color $running_processes
74
Added:
$hr
75
Added:
${color grey}File systems:
76
Added:
/ $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
77
Added:
${color grey}Networking:
78
Added:
Up:$color ${upspeed} ${color grey} - Down:$color ${downspeed}
79
Added:
$hr
80
Added:
${color grey}Name PID CPU% MEM%
81
Added:
${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
82
Added:
${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
83
Added:
${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
84
Added:
${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
85
Added:
#+end_src