bash/usr-local-bin: cleanup as no more SteamOS

This commit is contained in:
Aminda Suomalainen 2025-04-30 16:14:06 +03:00
parent 77b8728f3e
commit 8f7ca830e1
Signed by: Mikaela
GPG Key ID: 99392F62BAE30723
5 changed files with 16 additions and 36 deletions

View File

@ -1,6 +1,5 @@
#!/usr/bin/env bash
# In case we are on SteamOS?
#set -x
set -x
# The usual system-wide installation
if [ -f /usr/bin/kile ]; then
/usr/bin/kile "$@"
@ -14,4 +13,4 @@ elif [ -f ~/.local/share/flatpak/exports/bin/org.kde.kile ]; then
else
printf "kile doesn't seem to be installed :("
fi
#set +x
set +x

View File

@ -1,6 +1,5 @@
#!/usr/bin/env bash
# In case we are on SteamOS?
#set -x
set -x
# The usual system-wide installation
if [ -f /usr/bin/meld ]; then
/usr/bin/meld "$@"
@ -14,4 +13,4 @@ elif [ -f ~/.local/share/flatpak/exports/bin/org.gnome.meld ]; then
else
printf "meld doesn't seem to be installed :("
fi
#set +x
set +x

View File

@ -1,17 +0,0 @@
#!/usr/bin/env bash
# In case we are on SteamOS?
#set -x
# The usual system-wide installation
if [ -f /usr/bin/mpv ]; then
/usr/bin/mpv "$@"
# System-wide flatpak
elif [ -f /var/lib/flatpak/exports/bin/io.mpv.Mpv ]; then
flatpak run io.mpv.Mpv "$@"
# User-specific flatpak
elif [ -f ~/.local/share/flatpak/exports/bin/io.mpv.Mpv ]; then
flatpak run --user io.mpv.Mpv "$@"
# If not found.
else
printf "mpv doesn't seem to be installed :("
fi
#set +x

View File

@ -1,25 +1,24 @@
#!/usr/bin/env bash
# In case we are on SteamOS?
set -x
# The usual system-wide installation
if [ -f /usr/bin/nvim ]; then
/usr/bin/nvim "$@"
# System-wide flatpak
elif [ -f /var/lib/flatpak/exports/bin/io.neovim.nvim ]; then
flatpak run io.neovim.nvim "$@"
# User-specific flatpak
elif [ -f ~/.local/share/flatpak/exports/bin/io.neovim.nvim ]; then
flatpak run --user io.neovim.nvim "$@"
# System-wide flatpak
#elif [ -f /var/lib/flatpak/exports/bin/io.neovim.nvim ]; then
# flatpak run io.neovim.nvim "$@"
# User-specific flatpak
#elif [ -f ~/.local/share/flatpak/exports/bin/io.neovim.nvim ]; then
# flatpak run --user io.neovim.nvim "$@"
# Snap
elif [ -f /snap/bin/nvim ]; then
snap run nvim "$@"
#elif [ -f /snap/bin/nvim ]; then
# snap run nvim "$@"
# Fallback to vim, because this script breaks my alias/function
elif [ -f /usr/bin/vim ]; then
/usr/bin/vim "$@"
elif [ -f /var/lib/flatpak/exports/bin/org.vim.Vim ]; then
flatpak run org.vim.Vim "$@"
elif [ -f ~/.local/share/flatpak/exports/bin/org.vim.Vim ]; then
flatpak run --user org.vim.Vim "$@"
#elif [ -f /var/lib/flatpak/exports/bin/org.vim.Vim ]; then
# flatpak run org.vim.Vim "$@"
#elif [ -f ~/.local/share/flatpak/exports/bin/org.vim.Vim ]; then
# flatpak run --user org.vim.Vim "$@"
# Fallback to Vi is acceptable.
elif [ -f /usr/bin/vi ]; then
/usr/bin/vi "$@"