3.4 KiB
3.4 KiB
Fedora Kinoite
Apps
Flatpak installs are from Flathub unless otherwise noted.
VSCode
Write code.
flatpak install com.visualstudio.code
Add to settings.json so the host shell is spawned
{
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/app/bin/host-spawn",
"args": ["bash"],
"icon": "terminal-bash",
"overrideName": true
}
}
}
Bitwarden
Password manager.
flatpak install com.bitwarden.desktop
MPV
Video player (like VLC but can frame-by-frame in reverse).
flatpak install io.mpv.Mpv
Nextcloud Desktop
Sync your files.
flatpak install com.nextcloud.desktopclient.nextcloud
Nextcloud Talk
Talk to your friends.
Download nextcloud talk from:
https://github.com/nextcloud-releases/talk-desktop/releases
flatpak install ./Nextcloud.Talk-linux-x64.flatpak
Discord
Talk to your enemies.
flatpak install com.discordapp.Discord
Proton Mail
Talk to your business partners?
flatpak install me.proton.Mail
Gimp
Photoshop for Linux.
flatpak install org.gimp.GIMP
Minecraft
Mine. Craft.
flatpak install com.mojang.Minecraft
Moonlight
Mine. Craft. But somewhere else.
flatpak install com.moonlight_stream.Moonlight
Steam
Play games.
flatpak install com.valvesoftware.Steam
Marknote
Take notes with Mark.
flatpak install org.kde.marknote
Raspberry Pi Imager
Flash your pi.
flatpak install org.raspberrypi.rpi-imager
Fedora Media Writer
Flash your stick.
flatpak install org.fedoraproject.MediaWriter
Toolbox
toolbox create --distro arch
toolbox enter arch-toolbox-latest
Arch Toolbox Setup
Install zsh
pacman -S zsh grml-zsh-config zsh-syntax-highlighting zsh-autosuggestions pkgfile
cat <<EOF > ~/.zshrc
# Basic settings
autoload bashcompinit && bashcompinit
autoload -U compinit; compinit
zstyle ':completion:*' menu select
# Prompt settings
autoload -Uz promptinit
promptinit
PROMPT_EOL_MARK=
# Syntax Highlighting
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
# Command Not Found Autocomplete
source /usr/share/doc/pkgfile/command-not-found.zsh
### Custom Commands and Aliases ###
EOF
Add this to your ~/.bashrc to launch zsh
# If zsh exists, zsh
if [ -f /bin/zsh ]; then zsh && exit; fi
Custom image
podman build -t gitea.reeseapps.com/arch-toolbox:latest -f ./infrastructure/graduated/fedora/Containerfile
toolbox create -i gitea.reeseapps.com/arch-toolbox:latest
toolbox enter