updated: fixed some stuff

This commit is contained in:
Lian Drake 2023-12-29 18:34:37 -04:00
parent 38f5dda8a5
commit 08f163ab08
3 changed files with 16 additions and 5 deletions

View file

@ -35,7 +35,7 @@ theme.bg_urgent = "#a89984"
-- {{{ Borders
beautiful.gap_single_client = false
theme.useless_gap = dpi(4)
theme.border_width = dpi(1.5)
theme.border_width = dpi(2)
theme.border_normal = "#504945"
theme.border_focus = "#cc241d"
theme.border_marked = "#cc241d"

View file

@ -54,13 +54,13 @@ update_ms = 200
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
proc_sorting = "pid"
proc_sorting = "threads"
#* Reverse sorting order, True or False.
proc_reversed = False
#* Show processes as a tree.
proc_tree = False
proc_tree = True
#* Use the cpu graph colors in the process list.
proc_colors = True
@ -81,10 +81,10 @@ proc_cpu_graphs = True
proc_info_smaps = False
#* Show proc box on left side of screen instead of right.
proc_left = False
proc_left = True
#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
proc_filter_kernel = False
proc_filter_kernel = True
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
#* Select from a list of detected attributes from the options menu.

View file

@ -72,6 +72,17 @@ blur-background = true
blur-method = "dual_kawase"
blur-strength = 2
blur-kern = "3x3box";
blur-background-exclude = [
"window_type = 'dock'",
"class_g ~= 'maim'",
"class_i ~= 'maim'",
"class_g ~= 'slop'",
"class_i ~= 'slop'",
"name ~= 'maim'",
"name ~= 'slop'",
"window_type = 'desktop'",
"_GTK_FRAME_EXTENTS@:c"
];
#################################
# General Settings #