This commit is contained in:
iFargle 2023-08-15 13:36:26 +09:00
parent af9f6dc198
commit d597293ff5

View file

@ -1,24 +1,24 @@
{ ... }: { { ... }: {
home.file.".config/btop/btop.conf".text = """ home.file.".config/btop/btop.conf".text = "
color_theme = "../share/btop/themes/gruvbox_dark_v2.theme" color_theme = '../share/btop/themes/gruvbox_dark_v2.theme'
theme_background = True theme_background = True
truecolor = True truecolor = True
force_tty = False force_tty = False
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty" presets = 'cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty'
vim_keys = False vim_keys = False
rounded_corners = True rounded_corners = True
graph_symbol = "braille" graph_symbol = 'braille'
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". # Graph symbol to use for graphs in cpu box, 'default', 'braille', 'block' or 'tty'.
graph_symbol_cpu = "default" graph_symbol_cpu = 'default'
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". # Graph symbol to use for graphs in cpu box, 'default', 'braille', 'block' or 'tty'.
graph_symbol_mem = "default" graph_symbol_mem = 'default'
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". # Graph symbol to use for graphs in cpu box, 'default', 'braille', 'block' or 'tty'.
graph_symbol_net = "default" graph_symbol_net = 'default'
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". # Graph symbol to use for graphs in cpu box, 'default', 'braille', 'block' or 'tty'.
graph_symbol_proc = "default" graph_symbol_proc = 'default'
shown_boxes = "cpu net proc mem" shown_boxes = 'cpu net proc mem'
update_ms = 2000 update_ms = 2000
proc_sorting = "cpu lazy" proc_sorting = 'cpu lazy'
proc_reversed = False proc_reversed = False
proc_tree = True proc_tree = True
proc_colors = True proc_colors = True
@ -29,23 +29,23 @@
proc_info_smaps = False proc_info_smaps = False
proc_left = False proc_left = False
proc_filter_kernel = False proc_filter_kernel = False
cpu_graph_upper = "total" cpu_graph_upper = 'total'
cpu_graph_lower = "total" cpu_graph_lower = 'total'
cpu_invert_lower = True cpu_invert_lower = True
cpu_single_graph = False cpu_single_graph = False
cpu_bottom = False cpu_bottom = False
show_uptime = True show_uptime = True
check_temp = True check_temp = True
cpu_sensor = "Auto" cpu_sensor = 'Auto'
show_coretemp = True show_coretemp = True
cpu_core_map = "" cpu_core_map = ''
temp_scale = "celsius" temp_scale = 'celsius'
base_10_sizes = False base_10_sizes = False
show_cpu_freq = True show_cpu_freq = True
clock_format = "/host - \%X" clock_format = '/host - %X'
background_update = True background_update = True
custom_cpu_name = "" custom_cpu_name = ''
disks_filter = "" disks_filter = ''
mem_graphs = True mem_graphs = True
mem_below_net = False mem_below_net = False
zfs_arc_cached = True zfs_arc_cached = True
@ -59,14 +59,14 @@
show_io_stat = True show_io_stat = True
io_mode = False io_mode = False
io_graph_combined = False io_graph_combined = False
io_graph_speeds = "" io_graph_speeds = ''
net_download = 100 net_download = 100
net_upload = 100 net_upload = 100
net_auto = True net_auto = True
net_sync = False net_sync = False
net_iface = "" net_iface = ''
show_battery = True show_battery = True
selected_battery = "Auto" selected_battery = 'Auto'
log_level = "WARNING" log_level = 'WARNING'
"""; ";
} }