Skip to content

Instantly share code, notes, and snippets.

@RiderExMachina
Last active July 28, 2019 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RiderExMachina/08465693ab8d62211413a8ba0568c168 to your computer and use it in GitHub Desktop.
Save RiderExMachina/08465693ab8d62211413a8ba0568c168 to your computer and use it in GitHub Desktop.

Special Kubuntu Setup

Installation

  1. Download and install the latest iso from https://kubuntu.org/getkubuntu/
    • The Long Term Support (LTS) release is supported for 10 years and gets security updates
    • The current release is supported for 9 months
      • For a lot less hassle choose the LTS, for more up-to-date packages choose the current release.
  2. Update either using Discover or sudo apt update && sudo apt upgrade in the terminal
  3. Reboot to ensure the latest software is running
  4. (semi-optional) If gaming with an Nvidia card, install the graphics drivers ppa (sudo add-apt-repository ppa:graphics-drivers/ppa && sudo apt update)
    • You'll also need to run sudo apt install nvidia-430 to install the Nvidia drivers themselves
  5. Install Steam and other programs either through Discover or sudo apt install steam ...
  6. Install Wine Staging

For less hassle, download the "kubuntu-setup.sh" file and run it in a terminal by running chmod +x kubuntu-setup.sh && kubuntu-setup.sh in the directory the script was downloaded to.

Quality of Life Changes (optional)

Tiled Menu

If you want a more Windows 10-like start menu, install the Tiled Menu. The easiest way I've found to do this is to download the OCS-Store AppImage, run it, then search for "Tiled Menu" in the KDE Store option.

After that is installed, right-click the Start Menu icon then select Alternatives > Tiled Menu.

No confirmation Shutdown/Restart/etc

Open the Settings and go to Startup and Shutdown > Desktop Session and uncheck Confirm Logout.

Disable Restore Previous Session

Open Settings, go to Startup and Shutdown > Desktop Session and slect the Start with an empy session radio button.

#!/bin/bash
# Update the system
sudo apt update && sudo apt upgrade -y
# Install Nvidia PPA and driver
sudo add-apt-repository ppa:graphics-drivers/ppa && sudo apt update
sudo apt install nvidia-430
# Install Steam
sudo apt install steam
# Install Lutris (lutris.net)
sudo add-apt-repository ppa:lutris-team/lutris && sudo apt update
sudo apt install lutris
# Install Wine
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ disco main'
sudo apt install --install-recommends winehq-staging
echo "Please reboot your system"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment