Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/console/interface/memphis/plugins/clean_size/__init__.py
blob: 75ce1d1fa539b06d260a7e3cda449f4fd88bfc79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

import info

INTERNALS = {
            # Basic information
            'PLGNAME': "Clean Size",
            'TABNAME': None,
            'AUTHOR': "Eduardo Silva",
            'DESC': "Print the approx real memory usage",

            # Plugin API
            'Plg': None, # Plugin object

            'top_data': [int], # Top data types needed by memphis core plugin
            'top_cols': ["Approx Real Usage (kb)"]
        }