Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. #!/bin/bash
  2. set +x
  3.  
  4. ids=(19 615 1465 6 15 18 8 7 759 517 307 1065 1166 277 118 750 906 355 120 782)
  5. idsf=(1317 759 1194 1139 277 1465)
  6.  
  7. # iterate ids - remove
  8. for id in "${ids[@]}"
  9. do
  10. sudo /usr/local/bin/gnome-shell-extension-manage --remove --extension-id $id --system
  11. done
  12.  
  13. # iterate forced ids- remove
  14. for id in "${idsf[@]}"
  15. do
  16. sudo /usr/local/bin/gnome-shell-extension-manage --remove --extension-id $id --system
  17. done
  18.  
  19. # iterate ids - install
  20. for id in "${ids[@]}"
  21. do
  22. sudo /usr/local/bin/gnome-shell-extension-manage --install --extension-id $id --system
  23. done
  24.  
  25. # iterate forced ids - install
  26. for id in "${idsf[@]}"
  27. do
  28. sudo /usr/local/bin/gnome-shell-extension-manage --install --extension-id $id --system --version latest
  29. done
  30.  
  31.  
  32. set -x
  33.  
  34. # 162: Todo list
  35. # 904: Disconnect wifi
  36. # 1097: keep awake
  37.  
  38. # 1031: topicons plus
  39. # 615: KStatusNotifierItem/AppIndicator Support
  40. # 6: applications-menu
  41. # 15: alternate-tab windowbased switcher
  42. # 18: native window placement
  43. # 8: places status indicator
  44. # 7: removable drive menu
  45. # 602: window list
  46. # 1139: apt-update-indicator
  47. # 759: better-volume-indicator mousewheel
  48. # 517: caffeine
  49. # 307: dash-to-dock
  50. # 1065: docker integration
  51. # 1166: extension update notifier
  52. # 277: impatience gnome-shell animation-speed
  53. # 1317: Alt-Tab Switcher Popup Delay Removal
  54. # 118: no topleft hot-corner
  55. # 750: openweather
  56. # 1144: shortcut list
  57. # 906: sound input output chooser
  58. # 355: status area horizontal spacing
  59. # 120: system monitor
  60. # 131: touchpad indicator
  61. # 1213: dynamic battery
  62. # 604: teatime
  63. # 690: easy-screencast
  64. # 782: pidgin IM integration
  65. # 1194: show desktop button
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement