Created
November 30, 2024 19:06
-
-
Save diniremix/eae581d3ac1d5b28e7209233a94aaa9a to your computer and use it in GitHub Desktop.
elementaryOS 8 after install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# elementaryOS 8 after install | |
sudo apt update && sudo apt upgrade | |
sudo ubuntu-drivers autoinstall | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install ubuntu-restricted-extras libavcodec-extra ffmpeg curl wget | |
# sudo apt install libdvd-pkg | |
sudo apt install rar unrar zip unzip xz-utils p7zip-full p7zip-rar sharutils file-roller | |
sudo apt install synaptic gdebi dconf-editor | |
sudo apt install git gitk git-gui git-flow | |
# sudo apt install exfat-fuse exfat-utils | |
sudo apt install btop flameshot vlc | |
sudo apt install keepassxc | |
# fastfetch https://github.com/fastfetch-cli/fastfetch | |
sudo add-apt-repository ppa:zhangsongcui3371/fastfetch | |
sudo apt update | |
sudo apt install fastfetch | |
# keepassxc | |
sudo add-apt-repository ppa:phoerious/keepassxc | |
sudo apt-get update | |
sudo apt-get install keepassxc | |
# onlyoffice | |
# https://www.onlyoffice.com/es/download-desktop.aspx?from=desktop | |
# https://helpcenter.onlyoffice.com/installation/desktop-install-ubuntu.aspx | |
# https://download.onlyoffice.com/install/desktop/editors/linux/onlyoffice-desktopeditors_amd64.deb | |
sudo dpkg -i ./onlyoffice-desktopeditors_amd64.deb | |
# pantheon-tweaks | |
# https://github.com/pantheon-tweaks/pantheon-tweaks | |
# https://flathub.org/apps/io.github.pantheon_tweaks.pantheon-tweaks | |
flatpak install flathub io.github.pantheon_tweaks.pantheon-tweaks | |
# Wingpanel Community Indicators(does not work with Circe, yet) | |
# | |
# https://github.com/MvBonin/wingpanel-community-indicators | |
# https://github.com/Lafydev/wingpanel-indicator-ayatana | |
killall io.elementary.wingpanel | |
# Firefox without snap | |
# https://ubuntuhandbook.org/index.php/2022/04/install-firefox-deb-ubuntu-22-04/ | |
sudo snap remove firefox | |
sudo add-apt-repository ppa:mozillateam/ppa | |
sudo apt-get update | |
sudo apt install firefox | |
sudo apt install audacious audacious-plugins | |
# Opera browser without snap | |
curl https://deb.opera.com/archive.key | sudo apt-key add -file:///home/bjorgen/.profile | |
echo deb https://deb.opera.com/opera-stable/ stable non-free | sudo tee /etc/apt/sources.list.d/opera.list | |
sudo apt update | |
sudo apt install opera-stable -y | |
# vscode without snap | |
# https://linuxiac.com/how-to-install-vs-code-on-ubuntu-24-04-lts/ | |
sudo apt install wget gpg apt-transport-https | |
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg | |
sudo install -D -o root -g root -m 644 packages.microsoft.gpg /etc/apt/keyrings/packages.microsoft.gpg | |
echo "deb [arch=amd64,arm64,armhf signed-by=/etc/apt/keyrings/packages.microsoft.gpg] https://packages.microsoft.com/repos/code stable main" | sudo tee /etc/apt/sources.list.d/vscode.list > /dev/null | |
rm packages.microsoft.gpg | |
sudo apt update | |
sudo apt install code | |
# enable all Startup Applications | |
cd /etc/xdg/autostart | |
sudo sed --in-place 's/NoDisplay=true/NoDisplay=false/g' *.desktop | |
# fix broken packages | |
sudo apt --fix-broken install | |
# Reduce Swappiness | |
cat /proc/sys/vm/swappiness | |
sudo nano /etc/sysctl.conf | |
> vm.swappiness=20 | |
# clean system | |
sudo apt autoremove | |
sudo apt -y clean | |
sudo apt -y autoclean | |
# some websites | |
- https://gist.github.com/inercia/3f11aa96dd80bb1c2056745c8a9b0f7d | |
- https://github.com/MvBonin/wingpanel-community-indicators | |
- https://elementaryos.stackexchange.com/questions/28500/tray-icon-support-in-elementary-6-odin-single-click-in-file-manager | |
- https://www.reallinuxuser.com/how-to-show-app-indicators-on-the-system-tray-in-elementary-os/ | |
- https://github.com/boyter/scc?tab=readme-ov-file#install | |
- https://github.com/casey/just |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment