diff options
author | monsta <[email protected]> | 2016-02-29 17:08:11 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-02-29 17:15:18 +0300 |
commit | 19090fe133ceb383535070216471f995690f64c8 (patch) | |
tree | 5b23473a2e9ed8493909e089e99052320fe5a597 | |
parent | e19221ee82c696eb55870c1f776bc892296fd33c (diff) | |
download | mate-system-monitor-19090fe133ceb383535070216471f995690f64c8.tar.bz2 mate-system-monitor-19090fe133ceb383535070216471f995690f64c8.tar.xz |
defaulttable: use correct icons (fix old gnome->mate replace error)
and remove some entries for which no replacement could be found
-rw-r--r-- | src/defaulttable.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/defaulttable.h b/src/defaulttable.h index a5a779f..5d54ccc 100644 --- a/src/defaulttable.h +++ b/src/defaulttable.h @@ -20,29 +20,26 @@ PrettyTableItem(const std::string& a_command, const std::string& a_icon) #define ITEM PrettyTableItem -/* The current table is only a test */ static const PrettyTableItem default_table[] = { ITEM("(ba|z|tc|c|k)?sh", "utilities-terminal"), ITEM("(k|sys|u)logd|logger", "internet-news-reader"), ITEM("X(org)?", "display"), ITEM("apache2?|httpd|lighttpd", "internet-web-browser"), - ITEM(".*applet(-?2)?", "mate-applets"), ITEM("atd|cron|CRON|ntpd", "date"), ITEM("cupsd|lpd?", "printer"), ITEM("cvsd|mtn|git|svn", "file-manager"), - ITEM("emacs(server|\\d+)?", "mate-emacs"), ITEM("evolution.*", "internet-mail"), ITEM("famd|gam_server", "file-manager"), ITEM("getty", "input-keyboard"), ITEM("gdb|((gcc|g\\+\\+)(-.*)?)|ar|ld|make", "applications-development"), - ITEM("marco", "mate-window-manager"), + ITEM("marco|metacity", "gnome-window-manager"), ITEM("sendmail|exim\\d?", "internet-mail"), ITEM("squid", "proxy"), - ITEM("ssh(d|-agent)", "ssh-askpass-mate"), + ITEM("ssh(d|-agent)", "ssh-askpass-gnome"), ITEM("top|vmstat", "system-monitor"), ITEM("vim?", "vim"), ITEM("x?inetd", "internet-web-browser"), - ITEM("vino.*", "mate-remote-desktop") + ITEM("vino.*", "gnome-remote-desktop") }; #undef ITEM |