This repository was archived by the owner on Aug 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 800
Ubuntu 25.10 Compatibility #559
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
c54836c
Update signal installation
Kasui92 8f2afa3
Update uninstall script to remove Neovim files
Kasui92 40dbe11
Merge remote-tracking branch 'origin/patch-1'
Kasui92 a30c2da
Prevents keyring duplication in vscode installation
Kasui92 c48b132
Move pipx installation into libraries
Kasui92 a506e8b
Use pipx for tldr installation
Kasui92 1f09e70
Removed Open with Alacritty option on Nautilus
Kasui92 1bab840
Replace Flatpak installation with direct download and installation of…
Kasui92 3144177
Replace snap installation of Pinta with Flatpak installation
Kasui92 fd862e1
Refactor Typora installation to use official repository and keyring
Kasui92 900fe04
Update Gum version to 0.17.0 for improved functionality
Kasui92 12546b2
Move gir1 installation into gnome-extensions step
Kasui92 9a52810
Replace Flatpak uninstallation of Obsidian with APT removal
Kasui92 836ea3e
Replace snap removal of Pinta with Flatpak uninstallation
Kasui92 8eb73fe
Fix typo
Kasui92 8a03832
Simplify 1Password installation by using direct download instead of r…
Kasui92 188b738
Update Obsidian installation script to use correct version retrieval …
Kasui92 41064e2
Use 'apt' instead of 'apt-get' for 1Password uninstallation
Kasui92 4f245bc
Add migration script to force upgrade gum to version 0.17.0
Kasui92 0a0082f
Refactor applications installation scripts to use a more robust method
Kasui92 26a63d2
Remove existing Microsoft GPG key before downloading a new one
Kasui92 1222101
Add fallback to reboot confirmation in desktop installer script
Kasui92 c6e8337
Remove both keyring and sources files after installation in app-signa…
Kasui92 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,9 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Obsidian is a multi-platform note taking application. See https://obsidian.md | ||
| gum spin --spinner meter --title "Obsidian installation about to start. It may take up to 20 minutes on some systems!" -- sleep 3 | ||
| flatpak install -y flathub md.obsidian.Obsidian | ||
| cd /tmp | ||
| OBSIDIAN_VERSION=$(curl -s https://api.github.com/repos/obsidianmd/obsidian-releases/releases/latest | grep -Po '"tag_name": "v\K[^"]*') | ||
| wget -O obsidian.deb "https://github.com/obsidianmd/obsidian-releases/releases/latest/download/obsidian_${OBSIDIAN_VERSION}_amd64.deb" | ||
| sudo apt install -y ./obsidian.deb | ||
| rm obsidian.deb | ||
| cd - | ||
|
Kasui92 marked this conversation as resolved.
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| #!/bin/bash | ||
|
|
||
| # FIXME: Get this out of snap | ||
| sudo snap install pinta | ||
| # Pinta is a simple drawing and image editing program. See https://www.pinta-project.com/ | ||
| flatpak install -y flathub com.github.PintaProject.Pinta | ||
|
Kasui92 marked this conversation as resolved.
|
||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,13 @@ | ||
| #!/bin/bash | ||
|
|
||
| wget -qO- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor >signal-desktop-keyring.gpg | ||
| cat signal-desktop-keyring.gpg | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg >/dev/null | ||
| echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main' | | ||
| sudo tee /etc/apt/sources.list.d/signal-xenial.list | ||
| rm signal-desktop-keyring.gpg | ||
| if [ ! -f /etc/apt/sources.list.d/signal-desktop.sources ]; then | ||
| [ -f /usr/share/keyrings/signal-desktop-keyring.gpg ] && sudo rm /usr/share/keyrings/signal-desktop-keyring.gpg | ||
| wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor > signal-desktop-keyring.gpg; | ||
| cat signal-desktop-keyring.gpg | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null | ||
| wget -O signal-desktop.sources https://updates.signal.org/static/desktop/apt/signal-desktop.sources; | ||
| cat signal-desktop.sources | sudo tee /etc/apt/sources.list.d/signal-desktop.sources > /dev/null | ||
| rm signal-desktop-keyring.gpg signal-desktop.sources | ||
| fi | ||
|
|
||
| sudo apt update | ||
| sudo apt install -y signal-desktop |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,17 +1,20 @@ | ||
| #!/bin/bash | ||
|
|
||
| cd /tmp | ||
| 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 -f packages.microsoft.gpg | ||
| cd - | ||
| if [ ! -f /etc/apt/keyrings/packages.microsoft.gpg ] || [ ! -f /usr/share/keyrings/microsoft.gpg ]; then | ||
| [ -f /etc/apt/keyrings/packages.microsoft.gpg ] && sudo rm /etc/apt/keyrings/packages.microsoft.gpg | ||
| cd /tmp | ||
| 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 -f packages.microsoft.gpg | ||
| cd - | ||
| fi | ||
|
|
||
| sudo apt update -y | ||
| sudo apt update | ||
|
Kasui92 marked this conversation as resolved.
|
||
| sudo apt install -y code | ||
|
|
||
| mkdir -p ~/.config/Code/User | ||
| cp ~/.local/share/omakub/configs/vscode.json ~/.config/Code/User/settings.json | ||
|
|
||
| # Install default supported themes | ||
| code --install-extension enkia.tokyo-night | ||
| code --install-extension enkia.tokyo-night | ||
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,8 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Install 1password and 1password-cli single script | ||
| curl -sS https://downloads.1password.com/linux/keys/1password.asc | \ | ||
| sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg | ||
|
|
||
| # Add apt repository | ||
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/$(dpkg --print-architecture) stable main" | | ||
| sudo tee /etc/apt/sources.list.d/1password.list | ||
|
|
||
| # Add the debsig-verify policy | ||
| sudo mkdir -p /etc/debsig/policies/AC2D62742012EA22/ | ||
| curl -sS https://downloads.1password.com/linux/debian/debsig/1password.pol | \ | ||
| sudo tee /etc/debsig/policies/AC2D62742012EA22/1password.pol | ||
| sudo mkdir -p /usr/share/debsig/keyrings/AC2D62742012EA22 | ||
| curl -sS https://downloads.1password.com/linux/keys/1password.asc | \ | ||
| sudo gpg --dearmor --output /usr/share/debsig/keyrings/AC2D62742012EA22/debsig.gpg | ||
|
|
||
| # Install 1Password & 1password-cli | ||
| sudo apt update && sudo apt install -y 1password 1password-cli | ||
| cd /tmp | ||
| wget https://downloads.1password.com/linux/debian/amd64/stable/1password-latest.deb -O 1password.deb | ||
| sudo apt install ./1password.deb -y | ||
| rm 1password.deb | ||
| cd - |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,10 @@ | ||
| #!/bin/bash | ||
|
|
||
| sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg | ||
| echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list | ||
| sudo apt update -y | ||
| if [ ! -f /etc/apt/sources.list.d/brave-browser-release.list ]; then | ||
| [ -f /usr/share/keyrings/brave-browser-archive-keyring.gpg ] && sudo rm /usr/share/keyrings/brave-browser-archive-keyring.gpg | ||
| sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg | ||
| echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main" | sudo tee /etc/apt/sources.list.d/brave-browser-release.list | ||
| if | ||
|
|
||
| sudo apt update | ||
| sudo apt install -y brave-browser |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Stream music using https://spotify.com | ||
| curl -sS https://download.spotify.com/debian/pubkey_C85668DF69375001.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg | ||
| echo "deb [signed-by=/etc/apt/trusted.gpg.d/spotify.gpg] https://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list | ||
| sudo apt update -y | ||
| if [ ! -f /etc/apt/sources.list.d/spotify.list ]; then | ||
| [ -f /etc/apt/trusted.gpg.d/spotify.gpg ] && sudo rm /etc/apt/trusted.gpg.d/spotify.gpg | ||
| curl -sS https://download.spotify.com/debian/pubkey_C85668DF69375001.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/spotify.gpg | ||
| echo "deb [signed-by=/etc/apt/trusted.gpg.d/spotify.gpg] https://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list | ||
| fi | ||
|
|
||
| sudo apt update | ||
| sudo apt install -y spotify-client |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,10 @@ | ||
| #!/bin/bash | ||
|
|
||
| curl -fsSL "https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/windsurf.gpg" | sudo gpg --dearmor -o /usr/share/keyrings/windsurf-stable-archive-keyring.gpg | ||
| echo "deb [signed-by=/usr/share/keyrings/windsurf-stable-archive-keyring.gpg arch=amd64] https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/apt stable main" | sudo tee /etc/apt/sources.list.d/windsurf.list >/dev/null | ||
| if [ ! -f /etc/apt/sources.list.d/windsurf.list ]; then | ||
| [ -f /usr/share/keyrings/windsurf-stable-archive-keyring.gpg ] && sudo rm /usr/share/keyrings/windsurf-stable-archive-keyring.gpg | ||
| curl -fsSL "https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/windsurf.gpg" | sudo gpg --dearmor -o /usr/share/keyrings/windsurf-stable-archive-keyring.gpg | ||
| echo "deb [signed-by=/usr/share/keyrings/windsurf-stable-archive-keyring.gpg arch=amd64] https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/apt stable main" | sudo tee /etc/apt/sources.list.d/windsurf.list >/dev/null | ||
| fi | ||
|
|
||
| sudo apt update -y | ||
| sudo apt update | ||
| sudo apt install -y windsurf |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,73 +1,4 @@ | ||
| #!/usr/bin/env sh | ||
|
|
||
| # Make alacritty default terminal emulator | ||
| sudo update-alternatives --set x-terminal-emulator /usr/bin/alacritty | ||
|
|
||
| # Adding alacritty to nautilus contextual menu requires the python wrapper for the libraries | ||
| sudo apt install -y python3-nautilus | ||
| mkdir -p ~/.local/share/nautilus-python/extensions/ | ||
|
|
||
| cat > ~/.local/share/nautilus-python/extensions/open-alacritty.py <<TECHNICALLYNOTACONFIGSOHEREDOCCEDITIS | ||
| import os | ||
| from urllib.parse import unquote | ||
| from gi.repository import Nautilus, GObject | ||
| from typing import List | ||
|
|
||
| class OpenTerminalExtension(GObject.GObject, Nautilus.MenuProvider): | ||
| def _open_terminal(self, file: Nautilus.FileInfo) -> None: | ||
| filename = unquote(file.get_uri()[7:]) | ||
|
|
||
| os.chdir(filename) | ||
| os.system("alacritty") | ||
|
|
||
| def menu_activate_cb( | ||
| self, | ||
| menu: Nautilus.MenuItem, | ||
| file: Nautilus.FileInfo, | ||
| ) -> None: | ||
| self._open_terminal(file) | ||
|
|
||
| def menu_background_activate_cb( | ||
| self, | ||
| menu: Nautilus.MenuItem, | ||
| file: Nautilus.FileInfo, | ||
| ) -> None: | ||
| self._open_terminal(file) | ||
|
|
||
| def get_file_items( | ||
| self, | ||
| files: List[Nautilus.FileInfo], | ||
| ) -> List[Nautilus.MenuItem]: | ||
| if len(files) != 1: | ||
| return [] | ||
|
|
||
| file = files[0] | ||
| if not file.is_directory() or file.get_uri_scheme() != "file": | ||
| return [] | ||
|
|
||
| item = Nautilus.MenuItem( | ||
| name="NautilusPython::openterminal_file_item", | ||
| label="Open in Alacritty", | ||
| tip="Open Alacritty In %s" % file.get_name(), | ||
| ) | ||
| item.connect("activate", self.menu_activate_cb, file) | ||
|
|
||
| return [ | ||
| item, | ||
| ] | ||
|
|
||
| def get_background_items( | ||
| self, | ||
| current_folder: Nautilus.FileInfo, | ||
| ) -> List[Nautilus.MenuItem]: | ||
| item = Nautilus.MenuItem( | ||
| name="NautilusPython::openterminal_file_item2", | ||
| label="Open in Alacritty", | ||
| tip="Open Alacritty In %s" % current_folder.get_name(), | ||
| ) | ||
| item.connect("activate", self.menu_background_activate_cb, current_folder) | ||
|
|
||
| return [ | ||
| item, | ||
| ] | ||
| TECHNICALLYNOTACONFIGSOHEREDOCCEDITIS | ||
| sudo update-alternatives --set x-terminal-emulator /usr/bin/alacritty |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| #!/bin/bash | ||
|
|
||
| curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg && | ||
| sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg && | ||
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list >/dev/null && | ||
| sudo apt update && | ||
| sudo apt install gh -y | ||
| if [ ! -f /etc/apt/sources.list.d/github-cli.list ]; then | ||
| [ -f /usr/share/keyrings/githubcli-archive-keyring.gpg ] && sudo rm /usr/share/keyrings/githubcli-archive-keyring.gpg | ||
| curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg status=none | ||
| sudo chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg | ||
| echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list >/dev/null | ||
| fi | ||
|
|
||
| sudo apt update | ||
| sudo apt install gh -y |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #!/bin/bash | ||
|
|
||
| sudo apt install -y fzf ripgrep bat eza zoxide plocate apache2-utils fd-find tldr | ||
| sudo apt install -y fzf ripgrep bat eza zoxide plocate apache2-utils fd-find |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| #!/bin/bash | ||
|
|
||
| sudo apt install -y \ | ||
| build-essential pkg-config autoconf bison clang rustc \ | ||
| build-essential pkg-config autoconf bison clang rustc pipx \ | ||
| libssl-dev libreadline-dev zlib1g-dev libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev libjemalloc2 \ | ||
| libvips imagemagick libmagickwand-dev mupdf mupdf-tools gir1.2-gtop-2.0 gir1.2-clutter-1.0 \ | ||
| libvips imagemagick libmagickwand-dev mupdf mupdf-tools \ | ||
| redis-tools sqlite3 libsqlite3-0 libmysqlclient-dev libpq-dev postgresql-client postgresql-client-common |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Install tldr for simplified man pages. See https://tldr.sh/ | ||
| pipx install tldr |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Force upgrade to gum 0.17.0 to fix issues with older versions | ||
| cd /tmp | ||
| GUM_VERSION="0.17.0" | ||
| wget -qO gum.deb "https://github.com/charmbracelet/gum/releases/download/v${GUM_VERSION}/gum_${GUM_VERSION}_amd64.deb" | ||
| sudo apt-get install -y --allow-downgrades ./gum.deb | ||
| rm gum.deb | ||
| cd - |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #!/bin/bash | ||
|
|
||
| flatpak uninstall -y flathub md.obsidian.Obsidian | ||
| sudo apt remove --purge -y obsidian |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| #!/bin/bash | ||
|
|
||
| sudo snap remove pinta | ||
| flatpak uninstall -y flathub com.github.PintaProject.Pinta |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.