A bin folder, holding helpfull scripts and commands
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

zypper-extend-suse 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. git-core
  7. neofetch
  8. powerline
  9. sshfs curlftpfs
  10. keepass xdotool
  11. gtk3-metatheme-breeze gtk3-metatheme-adapta gtk3-metatheme-bluebird arc-icon-theme paper-icon-theme deepin-icon-theme elementary-icon-theme
  12. "
  13. _COMMON="
  14. joe git tmux
  15. keepass2 xdotool
  16. brasero
  17. sshfs curlftpfs openssh-server
  18. fonts-powerline powerline python3-powerline python3-powerline-gitstatus
  19. lib32stdc++6
  20. "
  21. MULTIMEDIA="
  22. kodi kodi.binary-addons-pvr.hts
  23. ardour qjackctl lv2-calf
  24. "
  25. _MULTIMEDIA="
  26. ffmpeg
  27. kodi kodi-pvr-hts
  28. spotify-client
  29. photocollage
  30. ardour ubuntustudio-controls calf-plugins eq10q fluid-soundfont-gm fluid-soundfont-gs lame
  31. "
  32. TOOLS="
  33. texlive-latexmk-bin
  34. "
  35. _TOOLS="
  36. evolution
  37. gnuplot
  38. gnome-boxes
  39. gvncviewer
  40. texlive-binaries texlive-latex-extra texlive-lang-german texlive-fonts-recommended texstudio
  41. gimp
  42. "
  43. PROGRAMMING="
  44. make
  45. python38-virtualenv
  46. python38-wxPython
  47. "
  48. _PROGRAMMING="
  49. pycodestyle
  50. virtualenv
  51. python-coverage python3-coverage python-jinja2 python3-jinja2
  52. python-wxtools python3-wxgtk4.0
  53. python3-evdev python3-serial
  54. python3-sphinx python3-sphinx-rtd-theme
  55. meld
  56. retext
  57. "
  58. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  59. echo The followin packages and their required depending packages will be installed:
  60. echo ------------------------------------------------------------------------------
  61. echo $ALL
  62. echo ------------------------------------------------------------------------------
  63. read -r -p "Are you sure? [y/N] " response
  64. echo ------------------------------------------------------------------------------
  65. case "$response" in
  66. [yY][eE][sS]|[yY])
  67. sudo zypper ar -cfp 90 https://ftp.gwdg.de/pub/linux/misc/packman/suse/openSUSE_Tumbleweed/ packman
  68. sudo zypper ar -cfp 90 http://opensuse-guide.org/repo/openSUSE_Tumbleweed/ libdvdcss
  69. sudo zypper ar -cfp 90 https://download.opensuse.org/repositories/multimedia:/apps/openSUSE_Tumbleweed/ multimedia:apps
  70. sudo zypper install $ALL
  71. ;;
  72. *)
  73. echo Installation aborted!
  74. ;;
  75. esac