Linux configuration stuffs
at main 52 lines 2.0 kB view raw
1#? Config file for bashtop v. 0.9.25 2 3#* Color theme, looks for a .theme file in "$HOME/.config/bashtop/themes" and "$HOME/.config/bashtop/user_themes" 4#* Should be prefixed with either "themes/" or "user_themes/" depending on location, "Default" for builtin default theme 5color_theme="themes/catppuccin_mocha.theme" 6 7#* Update time in milliseconds, increases automatically if set below internal loops processing time, recommended 2000 ms or above for better sample times for graphs 8update_ms="2500" 9 10#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu responsive" 11#* "cpu lazy" updates sorting over time, "cpu responsive" updates sorting directly 12proc_sorting="memory" 13 14#* Reverse sorting order, "true" or "false" 15proc_reversed="false" 16 17#* Show processes as a tree 18proc_tree="false" 19 20#* Check cpu temperature, only works if "sensors", "vcgencmd" or "osx-cpu-temp" commands is available 21check_temp="true" 22 23#* Draw a clock at top of screen, formatting according to strftime, empty string to disable 24draw_clock="%X" 25 26#* Update main ui when menus are showing, set this to false if the menus is flickering too much for comfort 27background_update="true" 28 29#* Custom cpu model name, empty string to disable 30custom_cpu_name="" 31 32#* Enable error logging to "$HOME/.config/bashtop/error.log", "true" or "false" 33error_logging="true" 34 35#* Show color gradient in process list, "true" or "false" 36proc_gradient="true" 37 38#* If process cpu usage should be of the core it's running on or usage of the total available cpu power 39proc_per_core="false" 40 41#* Optional filter for shown disks, should be names of mountpoints, "root" replaces "/", separate multiple values with space 42disks_filter="" 43 44#* Enable check for new version from github.com/aristocratos/bashtop at start 45update_check="false" 46 47#* Enable graphs with double the horizontal resolution, increases cpu usage 48hires_graphs="false" 49 50#* Enable the use of psutil python3 module for data collection, default on OSX 51use_psutil="true" 52