updated: fixed some stuff
This commit is contained in:
parent
38f5dda8a5
commit
08f163ab08
3 changed files with 16 additions and 5 deletions
|
@ -35,7 +35,7 @@ theme.bg_urgent = "#a89984"
|
||||||
-- {{{ Borders
|
-- {{{ Borders
|
||||||
beautiful.gap_single_client = false
|
beautiful.gap_single_client = false
|
||||||
theme.useless_gap = dpi(4)
|
theme.useless_gap = dpi(4)
|
||||||
theme.border_width = dpi(1.5)
|
theme.border_width = dpi(2)
|
||||||
theme.border_normal = "#504945"
|
theme.border_normal = "#504945"
|
||||||
theme.border_focus = "#cc241d"
|
theme.border_focus = "#cc241d"
|
||||||
theme.border_marked = "#cc241d"
|
theme.border_marked = "#cc241d"
|
||||||
|
|
|
@ -54,13 +54,13 @@ update_ms = 200
|
||||||
|
|
||||||
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
|
#* 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.
|
#* "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.
|
#* Reverse sorting order, True or False.
|
||||||
proc_reversed = False
|
proc_reversed = False
|
||||||
|
|
||||||
#* Show processes as a tree.
|
#* Show processes as a tree.
|
||||||
proc_tree = False
|
proc_tree = True
|
||||||
|
|
||||||
#* Use the cpu graph colors in the process list.
|
#* Use the cpu graph colors in the process list.
|
||||||
proc_colors = True
|
proc_colors = True
|
||||||
|
@ -81,10 +81,10 @@ proc_cpu_graphs = True
|
||||||
proc_info_smaps = False
|
proc_info_smaps = False
|
||||||
|
|
||||||
#* Show proc box on left side of screen instead of right.
|
#* 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).
|
#* (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.
|
#* 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.
|
#* Select from a list of detected attributes from the options menu.
|
||||||
|
|
|
@ -72,6 +72,17 @@ blur-background = true
|
||||||
blur-method = "dual_kawase"
|
blur-method = "dual_kawase"
|
||||||
blur-strength = 2
|
blur-strength = 2
|
||||||
blur-kern = "3x3box";
|
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 #
|
# General Settings #
|
||||||
|
|
Loading…
Reference in a new issue