]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - htoprc.in
shell/aliases: use `command`
[config/dotfiles.git] / htoprc.in
1 # htop configuration file.
2
3 # Useful mappings:
4 #
5 # Use \ to limit to only matching processes (like l in mutt). _Very_ useful.
6
7 # Copyright (C) 2011-2013  Simon Ruderich
8 #
9 # This file is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This file is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
21
22
23 # Ordered in the same way htop orders them for easy diffing.
24
25 # Display the following fields (trailing whitespace for easy diffing ...):
26 #
27 # - PID (0)
28 # - USER (48)
29 # - NICE (18)
30 # - M_SIZE (38): virtual memory
31 # - M_RESIDENT (39): resident memory
32 # - M_SHARE (40): shared memory
33 # - STATE (2)
34 # - PERCENT_CPU (46)
35 # - PERCENT_MEM (47)
36 # - TIME (49)
37 # - STARTTIME (20)
38 # - Command (1)
39 fields=0 48 18 38 39 40 2 46 47 49 20 1 
40
41 # Don't display kernel threads.
42 hide_kernel_threads=1
43 # But display userland threads.
44 hide_userland_threads=0
45
46 # Highlight program base name.
47 highlight_base_name=1
48 # Highlight megabytes in memory usage.
49 highlight_megabytes=1
50 # Highlight threads.
51 highlight_threads=1
52
53 # Display detailed CPU information, including IO-Wait.
54 detailed_cpu_time=1
55
56 # vim: ft=cfg