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.

dnf-extend-fedora 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #!/bin/sh
  2. #
  3. #
  4. # Additional Packages
  5. COMMON="
  6. joe
  7. neofetch
  8. powerline powerline-fonts
  9. keepass xdotool
  10. tlp
  11. gnome-tweaks mint-themes-gtk3 albatross-gtk3-theme breeze-gtk-gtk3 breeze-icon-theme breeze-cursor-theme clearlooks-phenix-gtk3-theme deepin-gtk-theme deepin-icon-theme
  12. curlftpfs sshfs
  13. powerline powerline-fonts
  14. snapd
  15. "
  16. MULTIMEDIA="
  17. qjackctl
  18. ardour6 calf fluid-soundfont-gm fluid-soundfont-gs lv2-calf-plugins lv2-calf-plugins-gui
  19. audacious
  20. "
  21. rpmfusion="
  22. kodi kodi-pvr-hts
  23. "
  24. snap="
  25. spotify
  26. "
  27. TOOLS="
  28. evolution thunderbird
  29. texlive-scheme-basic texlive-german texlive-nth texlive-units latexmk
  30. texstudio
  31. gimp
  32. remmina
  33. "
  34. PROGRAMMING="
  35. virtualenv
  36. meld
  37. python3-wxpython4
  38. "
  39. ALL=$COMMON\ $MULTIMEDIA\ $TOOLS\ $PROGRAMMING
  40. echo RPMFUSION: The followin packages and their required depending packages will be installed:
  41. echo ------------------------------------------------------------------------------
  42. echo rpmfusion-free-release rpmfusion-nonfree-release lv2-EQ10Q-plugins $rpmfusion
  43. echo ------------------------------------------------------------------------------
  44. read -r -p "Are you sure? [y/N] " response
  45. echo ------------------------------------------------------------------------------
  46. case "$response" in
  47. [yY][eE][sS]|[yY])
  48. sudo dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
  49. sudo dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
  50. sudo dnf install -y $rpmfusion
  51. ;;
  52. *)
  53. echo Installation aborted!
  54. ;;
  55. esac
  56. echo DNF: The followin packages and their required depending packages will be installed:
  57. echo ------------------------------------------------------------------------------
  58. echo $ALL lv2-EQ10Q-plugins
  59. echo ------------------------------------------------------------------------------
  60. read -r -p "Are you sure? [y/N] " response
  61. echo ------------------------------------------------------------------------------
  62. case "$response" in
  63. [yY][eE][sS]|[yY])
  64. sudo dnf -y install $ALL https://kojipkgs.fedoraproject.org//packages/lv2-EQ10Q-plugins/2.2/5.fc32/x86_64/lv2-EQ10Q-plugins-2.2-5.fc32.x86_64.rpm
  65. echo
  66. ln -s /var/lib/snapd/snap /snap
  67. ;;
  68. *)
  69. echo Installation aborted!
  70. ;;
  71. esac
  72. echo SNAP: The followin packages and their required depending packages will be installed:
  73. echo ------------------------------------------------------------------------------
  74. echo $snap
  75. echo ------------------------------------------------------------------------------
  76. read -r -p "Are you sure? [y/N] " response
  77. echo ------------------------------------------------------------------------------
  78. case "$response" in
  79. [yY][eE][sS]|[yY])
  80. sudo snap install $snap
  81. echo
  82. ;;
  83. *)
  84. echo Installation aborted!
  85. ;;
  86. esac