diff --git a/common/.config/btop/btop.conf b/common/.config/btop/btop.conf index 3321309..ee107f4 100644 --- a/common/.config/btop/btop.conf +++ b/common/.config/btop/btop.conf @@ -1,4 +1,4 @@ -#? Config file for btop v. 1.2.13 +#? Config file for btop v. 1.3.2 #* 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" @@ -37,6 +37,9 @@ graph_symbol = "braille" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_cpu = "default" +# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty". +graph_symbol_gpu = "default" + # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_mem = "default" @@ -46,15 +49,15 @@ graph_symbol_net = "default" # Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty". graph_symbol_proc = "default" -#* Manually set which boxes to show. Available values are "cpu mem net proc", separate values with whitespace. -shown_boxes = "cpu mem net proc" +#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. +shown_boxes = "mem cpu net proc" #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 400 #* 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 = "cpu lazy" +proc_sorting = "memory" #* Reverse sorting order, True or False. proc_reversed = False @@ -86,6 +89,9 @@ proc_left = False #* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop). proc_filter_kernel = False +#* In tree-view, always accumulate child process resources in the parent process. +proc_aggregate = False + #* 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. cpu_graph_upper = "total" @@ -94,6 +100,9 @@ cpu_graph_upper = "total" #* Select from a list of detected attributes from the options menu. cpu_graph_lower = "total" +#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off". +show_gpu_info = "Auto" + #* Toggles if the lower CPU graph should be inverted. cpu_invert_lower = True @@ -193,7 +202,7 @@ net_download = 100 net_upload = 100 #* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest. -net_auto = False +net_auto = True #* Sync the auto scaling for download and upload to whichever currently has the highest scale. net_sync = False @@ -207,6 +216,33 @@ show_battery = True #* Which battery to use if multiple are present. "Auto" for auto detection. selected_battery = "Auto" +#* Show power stats of battery next to charge indicator. +show_battery_watts = True + #* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG". #* The level set includes all lower levels, i.e. "DEBUG" will show all logging info. -log_level = "WARNING" \ No newline at end of file +log_level = "WARNING" + +#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards. +nvml_measure_pcie_speeds = True + +#* Horizontally mirror the GPU graph. +gpu_mirror_graph = True + +#* Custom gpu0 model name, empty string to disable. +custom_gpu_name0 = "" + +#* Custom gpu1 model name, empty string to disable. +custom_gpu_name1 = "" + +#* Custom gpu2 model name, empty string to disable. +custom_gpu_name2 = "" + +#* Custom gpu3 model name, empty string to disable. +custom_gpu_name3 = "" + +#* Custom gpu4 model name, empty string to disable. +custom_gpu_name4 = "" + +#* Custom gpu5 model name, empty string to disable. +custom_gpu_name5 = "" diff --git a/common/.config/mimeapps.list b/common/.config/mimeapps.list index 7d53f29..2e56efc 100644 --- a/common/.config/mimeapps.list +++ b/common/.config/mimeapps.list @@ -5,3 +5,4 @@ application/x-extension-html=google-chrome-unstable application/x-extension-html=google-chrome-unstable x-scheme-handler/eclipse+command=_usr_lib_dbeaver_.desktop x-scheme-handler/postman=Postman.desktop +application/x-ms-dos-executable;application/x-wine-extension-msp;application/x-msi;application/x-msdos-program=PortProton.desktop diff --git a/common/.config/picom.conf b/common/.config/picom.conf index 321c695..95d22ab 100644 --- a/common/.config/picom.conf +++ b/common/.config/picom.conf @@ -198,6 +198,7 @@ opacity-rule = [ "85:class_g = 'org.wezfurlong.wezterm'", "85:class_g = 'discord'", "85:class_g = 'Spotify'", + "100:class_g *= 'chrome'", ]; @@ -254,8 +255,7 @@ blur: { blur-background-exclude = [ #"window_type = 'dock'", #"window_type = 'desktop'", - #"class_g = 'URxvt'", - # + # prevents picom from blurring the background # when taking selection screenshot with `main` # https://github.com/naelstrof/maim/issues/130 diff --git a/common/.zshrc b/common/.zshrc index 3e8e122..8b8a840 100644 --- a/common/.zshrc +++ b/common/.zshrc @@ -31,4 +31,6 @@ export MAKEFLAGS="-j20" source $HOME/.zshrc.local -export QSYS_ROOTDIR="/home/benk/intelFPGA/22.1std/quartus/sopc_builder/bin" +export QSYS_ROOTDIR="/home/benk/intelFPGA/pro/qsys/bin" + +export INTELFPGAOCLSDKROOT="/home/benk/dmass/Quartus/22.2/hld"