-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenus.json
More file actions
21 lines (21 loc) · 812 Bytes
/
menus.json
File metadata and controls
21 lines (21 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"main_menu": {
"quit": ["q", "Quit the program"],
"help": ["h", "Help screen"],
"sort": ["s", "Set the process sorting criteria"],
"freeze": ["i", "Freeze the screen"],
"find": ["f", "Find a pattern in the process list"],
"raw": ["r", "Show raw values"],
"execute": ["e", "Execute a program"],
"kill": ["k", "Kill a process"],
"menu": ["m", "Show/Hide the menu"]
},
"sort_menu": {
"command": [0, "Lexicographical order on the command"],
"username": [1, "Lexicographical order on the username"],
"PID incr": [2, "Increasing PID value"],
"PID decr": [3, "Decreasing PID value"],
"thread incr": [4, "Increasing thread count"],
"thread decr": [5, "Decreasing thread count"]
}
}