diff --git a/btop/.config/btop/btop.conf b/btop/.config/btop/btop.conf index 81ecca7e0..ef3ea7002 100644 --- a/btop/.config/btop/btop.conf +++ b/btop/.config/btop/btop.conf @@ -1,4 +1,4 @@ -#? Config file for btop v. 1.2.8 +#? Config file for btop v. 1.2.12 #* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes. #* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes" @@ -74,6 +74,9 @@ proc_per_core = True #* Show process memory as bytes instead of percent. proc_mem_bytes = True +#* Show cpu graph for each process. +proc_cpu_graphs = True + #* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate) proc_info_smaps = False @@ -165,6 +168,9 @@ only_physical = True #* Read disks list from /etc/fstab. This also disables only_physical. use_fstab = True +#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool) +zfs_hide_datasets = False + #* Set to true to show available disk space for privileged users. disk_free_priv = False diff --git a/dconf/.config/dconf/user b/dconf/.config/dconf/user index f7bfb9b14..8e6e3683e 100644 Binary files a/dconf/.config/dconf/user and b/dconf/.config/dconf/user differ diff --git a/qtile/.config/qtile/config.py b/qtile/.config/qtile/config.py index 172bed365..b5b337b6f 100644 --- a/qtile/.config/qtile/config.py +++ b/qtile/.config/qtile/config.py @@ -51,6 +51,7 @@ class Commands(object): menu = 'repomenu_run -i -l 10 -w 600 -c -p "Launcher" -q "Launch a app"' browser = 'firefox' terminal = 'alacritty' + btop = 'alacritty --class=btop -e btop' powermenu = 'repomenue_powermenu' vbox = 'virt-manager' files = 'nemo' @@ -123,6 +124,7 @@ keys = [ Key([MOD, CTRL], "c", lazy.spawn(Commands.editor), desc="Launch editor", group="Launch"), Key([MOD, SHIFT], "e", lazy.spawn(Commands.powermenu), desc="Launch power menu", group="Launch"), Key([MOD, SHIFT], "Return", lazy.spawn(Commands.files), desc="Launch files", group="Launch"), + Key([MOD], "b", lazy.spawn(Commands.btop), desc="Launch btop", group="Utils"), # Audio Settings Key([], "XF86AudioMute", lazy.spawn("amixer -D pulse set Master toggle")), diff --git a/qtile/.config/qtile/packages.txt b/qtile/.config/qtile/packages.txt index 7823945e2..1251505ef 100644 --- a/qtile/.config/qtile/packages.txt +++ b/qtile/.config/qtile/packages.txt @@ -18,6 +18,7 @@ Launch [MOD] + [CTRL] + f Launch Browser Launch [MOD] + [CTRL] + c Launch Editor Launch [MOD] + [SHIFT] + e Launch Power Menu Launch [MOD] + [SHIFT] + Return Launch Files +Utils [MOD] + b Launch Btop Keychord [MOD] + r Resize Windows Keychord [MOD] + [CTRL] + g Launch Game Keychord [MOD] + Print Take A Screenshot