~noskcaj/ubuntu/vivid/gnome-system-monitor/3.15

« back to all changes in this revision

Viewing changes to src/defaulttable.h

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson
  • Date: 2013-03-22 16:44:14 UTC
  • mfrom: (1.5.1) (2.2.1 sid)
  • mto: (2.2.2 sid)
  • mto: This revision was merged to the branch mainline in revision 100.
  • Revision ID: package-import@ubuntu.com-20130322164414-lg3x8lv9owt6cfnl
Tags: 3.7.92-1
* New upstream release.
* Bump build-dependencies according to configure.ac:
  - libgtk-3-dev bumped from (>= 3.0.0) to (>= 3.5.12)
  - libgtkmm-3.0-dev bumped from (>= 2.99) to (>= 3.3.18)
* Change build-dependencies for new documentation infrastructure:
 - drop gnome-doc-tools
 - add yelp-tools and itstool
* Drop patches
  - 03_dont_show_in_KDE.patch and 04_kfreebsd_cputime.patch both
    applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#define ITEM PrettyTableItem
22
22
 
23
 
/* The current table is only a test */
24
23
static const PrettyTableItem default_table[] = {
 
24
    /* GNOME services */
 
25
    ITEM(".*applet(-?2)?|gnome-panel", "gnome-panel"),
 
26
    ITEM("evolution.*", "emblem-mail"),
 
27
    ITEM("gconfd-2|dconf-service", "preferences-desktop"),
 
28
    ITEM("metacity|gnome-shell", "gnome-window-manager"),
 
29
    ITEM("vino.*", "gnome-remote-desktop"),
 
30
    /* Other processes */
25
31
    ITEM("(ba|z|tc|c|k)?sh", "utilities-terminal"),
26
32
    ITEM("(k|sys|u)logd|logger", "internet-news-reader"),
27
33
    ITEM("X(org)?", "display"),
28
34
    ITEM("apache2?|httpd|lighttpd", "internet-web-browser"),
29
 
    ITEM(".*applet(-?2)?", "gnome-applets"),
30
35
    ITEM("atd|cron|CRON|ntpd", "date"),
31
36
    ITEM("cupsd|lpd?", "printer"),
32
37
    ITEM("cvsd|mtn|git|svn", "file-manager"),
33
38
    ITEM("emacs(server|\\d+)?", "gnome-emacs"),
34
 
    ITEM("evolution.*", "internet-mail"),
35
39
    ITEM("famd|gam_server", "file-manager"),
36
 
    ITEM("gconfd-2", "preferences-desktop"),
37
40
    ITEM("getty", "input-keyboard"),
38
41
    ITEM("gdb|((gcc|g\\+\\+)(-.*)?)|ar|ld|make", "applications-development"),
39
 
    ITEM("metacity", "gnome-window-manager"),
40
42
    ITEM("sendmail|exim\\d?", "internet-mail"),
41
43
    ITEM("squid", "proxy"),
42
44
    ITEM("ssh(d|-agent)", "ssh-askpass-gnome"),
43
45
    ITEM("top|vmstat", "system-monitor"),
44
46
    ITEM("vim?", "vim"),
45
 
    ITEM("x?inetd", "internet-web-browser"),
46
 
    ITEM("vino.*", "gnome-remote-desktop")
 
47
    ITEM("x?inetd", "internet-web-browser")
47
48
};
48
49
 
49
50
#undef ITEM