AutoYADM commit: 2025-05-01 15:00:05
This commit is contained in:
parent
ea21308016
commit
bc47e51af8
2 changed files with 11 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
#? Config file for btop v. 1.4.0
|
#? Config file for btop v. 1.4.1
|
||||||
|
|
||||||
#* 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"
|
||||||
|
@ -210,6 +210,9 @@ net_sync = True
|
||||||
#* Starts with the Network Interface specified here.
|
#* Starts with the Network Interface specified here.
|
||||||
net_iface = ""
|
net_iface = ""
|
||||||
|
|
||||||
|
#* "True" shows bitrates in base 10 (Kbps, Mbps). "False" shows bitrates in binary sizes (Kibps, Mibps, etc.). "Auto" uses base_10_sizes.
|
||||||
|
base_10_bitrate = "Auto"
|
||||||
|
|
||||||
#* Show battery stats in top right if battery is present.
|
#* Show battery stats in top right if battery is present.
|
||||||
show_battery = True
|
show_battery = True
|
||||||
|
|
||||||
|
@ -226,6 +229,9 @@ log_level = "WARNING"
|
||||||
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
|
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
|
||||||
nvml_measure_pcie_speeds = True
|
nvml_measure_pcie_speeds = True
|
||||||
|
|
||||||
|
#* Measure PCIe throughput on AMD cards, may impact performance on certain cards.
|
||||||
|
rsmi_measure_pcie_speeds = True
|
||||||
|
|
||||||
#* Horizontally mirror the GPU graph.
|
#* Horizontally mirror the GPU graph.
|
||||||
gpu_mirror_graph = True
|
gpu_mirror_graph = True
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,10 @@ set -l line (printf "%s" $data | fuzzel --prompt=">> " --dmenu)
|
||||||
set -l emoji (string split -f1 ' ' $line)
|
set -l emoji (string split -f1 ' ' $line)
|
||||||
sleep 0.15
|
sleep 0.15
|
||||||
if test -n "$emoji"
|
if test -n "$emoji"
|
||||||
wtype "$emoji"
|
wtype $emoji
|
||||||
|
# wtype -M ctrl -M shift -k v
|
||||||
|
# nohup wtype testing &>/dev/null &
|
||||||
|
# nohup wtype $emoji &>/dev/null &
|
||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue