Advertisement
Guest User

Untitled

a guest
Dec 16th, 2011
519
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.23 KB | None | 0 0
  1. cat > ~/.local/share/gnome-shell/extensions/pidgin-status/extension.js <<EOF
  2. const StatusIconDispatcher = imports.ui.statusIconDispatcher;
  3. function enable() {
  4.     StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['pidgin'] = 'pidgin';
  5. }
  6. function disable() {
  7.     StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['pidgin'] = '';
  8. }
  9. function init() {
  10. }
  11. EOF
  12.  
  13. cat > ~/.local/share/gnome-shell/extensions/pidgin-status/metadata.json <<EOF
  14. {
  15.   "shell-version": ["3.2.1", "3.2"],
  16.   "uuid": "pidgin-status",
  17.   "name": "Pidgin Status Icon",
  18.   "description": "Integrates Pidgin Client into the status bar"
  19. }
  20. EOF
  21.  
  22. cat > ~/.local/share/gnome-shell/extensions/skype-status/extension.js <<EOF
  23. const StatusIconDispatcher = imports.ui.statusIconDispatcher;
  24. function enable() {
  25.     StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['skype'] = 'skype';
  26. }
  27. function disable() {
  28.     StatusIconDispatcher.STANDARD_TRAY_ICON_IMPLEMENTATIONS['skype'] = '';
  29. }
  30. function init() {
  31. }
  32. EOF
  33.  
  34. cat > ~/.local/share/gnome-shell/extensions/skype-status/metadata.json <<EOF
  35. {
  36.   "shell-version": ["3.2.1", "3.2"],
  37.   "uuid": "skype-status",
  38.   "name": "Skype Status Icon",
  39.   "description": "Integrates Skype Client into the status bar"
  40. }
  41. EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement