mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-28 18:28:39 -05:00
Update
This commit is contained in:
parent
8acfd6a920
commit
d922cce7cd
@ -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.
|
#* 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"
|
#* 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.
|
#* Show process memory as bytes instead of percent.
|
||||||
proc_mem_bytes = True
|
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)
|
#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
|
||||||
proc_info_smaps = False
|
proc_info_smaps = False
|
||||||
|
|
||||||
@ -165,6 +168,9 @@ only_physical = True
|
|||||||
#* Read disks list from /etc/fstab. This also disables only_physical.
|
#* Read disks list from /etc/fstab. This also disables only_physical.
|
||||||
use_fstab = True
|
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.
|
#* Set to true to show available disk space for privileged users.
|
||||||
disk_free_priv = False
|
disk_free_priv = False
|
||||||
|
|
||||||
|
Binary file not shown.
@ -51,6 +51,7 @@ class Commands(object):
|
|||||||
menu = 'repomenu_run -i -l 10 -w 600 -c -p "Launcher" -q "Launch a app"'
|
menu = 'repomenu_run -i -l 10 -w 600 -c -p "Launcher" -q "Launch a app"'
|
||||||
browser = 'firefox'
|
browser = 'firefox'
|
||||||
terminal = 'alacritty'
|
terminal = 'alacritty'
|
||||||
|
btop = 'alacritty --class=btop -e btop'
|
||||||
powermenu = 'repomenue_powermenu'
|
powermenu = 'repomenue_powermenu'
|
||||||
vbox = 'virt-manager'
|
vbox = 'virt-manager'
|
||||||
files = 'nemo'
|
files = 'nemo'
|
||||||
@ -123,6 +124,7 @@ keys = [
|
|||||||
Key([MOD, CTRL], "c", lazy.spawn(Commands.editor), desc="Launch editor", group="Launch"),
|
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], "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, 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
|
# Audio Settings
|
||||||
Key([], "XF86AudioMute", lazy.spawn("amixer -D pulse set Master toggle")),
|
Key([], "XF86AudioMute", lazy.spawn("amixer -D pulse set Master toggle")),
|
||||||
|
@ -18,6 +18,7 @@ Launch [MOD] + [CTRL] + f Launch Browser
|
|||||||
Launch [MOD] + [CTRL] + c Launch Editor
|
Launch [MOD] + [CTRL] + c Launch Editor
|
||||||
Launch [MOD] + [SHIFT] + e Launch Power Menu
|
Launch [MOD] + [SHIFT] + e Launch Power Menu
|
||||||
Launch [MOD] + [SHIFT] + Return Launch Files
|
Launch [MOD] + [SHIFT] + Return Launch Files
|
||||||
|
Utils [MOD] + b Launch Btop
|
||||||
Keychord [MOD] + r Resize Windows
|
Keychord [MOD] + r Resize Windows
|
||||||
Keychord [MOD] + [CTRL] + g Launch Game
|
Keychord [MOD] + [CTRL] + g Launch Game
|
||||||
Keychord [MOD] + Print Take A Screenshot
|
Keychord [MOD] + Print Take A Screenshot
|
||||||
|
Loading…
Reference in New Issue
Block a user