Basic tips & apps I like to use on Nobara KDE.
No fancy design—just useful info.
Nobara KDEで私が普段使ってるTipsとかアプリとか。
カッコいいデザインとかめんどいんでシンプルにしました。
Nobara enables RPM Fusion by default during setup, so you likely already have this. Run the command below only if you skipped it or need to re-enable. Nobaraはセットアップ時にRPM Fusionをデフォルトで有効化するので、たいていは既に有効なはず。スキップしたか再有効化が必要な場合のみ以下を実行してね。
sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
RPM Fusion adds a huge library of packages not in the default Fedora repos — codecs, drivers, gaming tools, and more. After enabling, use sudo dnf install <package> to install them. Nobara also ships its own repo with gaming/streaming patches pre-applied.
RPM FusionはデフォルトのFedoraリポジトリにないパッケージをたくさん追加してくれる — コーデック、ドライバー、ゲームツールなど。有効化後はsudo dnf install <package>でインストールできる。Nobaraはゲームやストリーミングのパッチをあらかじめ適用した独自リポジトリも持ってるよ。
Enables Flatpak support — Installs Flatpak package manager and adds the official Flathub repository (main source for sandboxed apps). Nobara usually ships with Flatpak pre-installed, but run this to be sure and add Flathub. Flatpak使えるようにするやつ — Flatpak本体入れて、Flathub(サンドボックスアプリのメイン倉庫)を追加するだけ。Nobaraは通常Flatpakをプリインストールしてるけど、念のためこれを実行してFlathubも追加してね。
Run this command: このコマンド叩いて:
sudo dnf install flatpak && flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo
This installs Flatpak and adds Flathub for user-level access. After running, you may need to log out/in or reboot for everything to take effect. Then install apps with e.g. flatpak install flathub org.example.App or use a GUI like Discover (KDE's app store).
Flatpakを入れてユーザー権限でFlathubを追加してる。終わったらログアウト/ログインか再起動すると完全に使えるようになるよ。あとは flatpak install flathub org.example.App とかでアプリ入れられるし、KDEのアプリストアDiscoverのGUIでもOK。
Enables Snap support on Fedora-based systems — Snap is Canonical's universal package format. Similar to Flatpak, Snaps are self-contained app bundles that include their own dependencies and run sandboxed, making them distro-agnostic. They update automatically in the background and are distributed via the Snap Store. On Fedora/Nobara, snapd is available directly via DNF. FedoraベースのシステムにSnapサポートを追加 — SnapはCanonicalのユニバーサルパッケージ形式。Flatpakと似てて、依存関係を全部内包したサンドボックスアプリ形式で、どのディストロでも動く。バックグラウンドで自動アップデートされて、Snap Storeから配布される。Fedora/Nobaraではsnapdを直接DNFでインストールできる。
Step 1: Install snapd via DNF: ステップ1: DNFでsnapdをインストール:
sudo dnf install snapd
Step 2: Enable and start the snapd service: ステップ2: snapdサービスを有効化して起動:
sudo systemctl enable --now snapd.socket
Step 3: Create the necessary symlink (required on Fedora-based systems): ステップ3: 必要なシンボリックリンクを作成 (Fedoraベースでは必須):
sudo ln -s /var/lib/snapd/snap /snap
Step 4: (Optional but recommended) Reboot or log out/in: ステップ4: (任意だけどおすすめ) 再起動またはログアウト/ログイン:
This ensures /snap/bin is added to your $PATH. Skipping this may cause common warnings about the path not being found.
/snap/binが$PATHに追加されるようにするため。省略するとパスが見つからないという警告が出ることがある。
Step 5: Verify installation: ステップ5: インストール確認:
snap version
You should see output showing the snap client and daemon versions. snapクライアントとデーモンのバージョンが表示されればOK。
Test It — Install the classic hello-world snap to confirm everything works: 動作確認 — hello-worldスナップをインストールして確認:
sudo snap install hello-world
hello-world
Installing the Snap Store (GUI — optional): Snap Store のインストール (GUI — 任意):
If you want a graphical interface for browsing and installing snaps: スナップをGUIで探してインストールしたい場合:
sudo snap install snap-store
All three let you install software on Nobara KDE, but they work differently. Here's a quick breakdown: 3つともNobara KDEでソフトをインストールするための仕組みだけど、仕組みが違う。簡単にまとめると:
| DNF / RPM Fusion | Flatpak | Snap | |
|---|---|---|---|
| How it works仕組み | Native RPM packages from Fedora/Nobara/RPM Fusion reposFedora/Nobara/RPM FusionリポジトリのネイティブRPMパッケージ | Sandboxed app bundle, distro-agnosticサンドボックス型、ディストロ非依存 | Sandboxed app bundle, managed by snapd daemonサンドボックス型、snapdデーモン管理 |
| Performanceパフォーマンス | ✔ Native, best performance✔ ネイティブ、一番速い | ~ Slight overhead~ ちょっとオーバーヘッドあり | ✘ Slower startup, more overhead✘ 起動遅め、オーバーヘッド大きい |
| Disk usageディスク使用量 | ✔ Shares system libs, efficient✔ システムのライブラリ共有、効率的 | ~ Bundles own libs, moderate~ 自前ライブラリ同梱、まあまあ | ✘ Bundles own libs + squashfs overhead✘ 自前ライブラリ+squashfsで容量大きい |
| App selectionアプリ数 | ✔ Large — Fedora + RPM Fusion + Nobara repos✔ 多い — Fedora + RPM Fusion + Nobaraリポジトリ | ✔ Large — Flathub has most popular apps✔ 多い — Flathubに人気アプリはだいたいある | ~ Smaller — some exclusives~ 少なめ — ここだけのアプリも一部あり |
| Auto-updates自動更新 | ~ Manual (sudo dnf upgrade) or GUI~ 手動(sudo dnf upgrade)かGUIで |
~ Manual or via GUI~ 手動かGUIで | ✔ Automatic in background✔ バックグラウンドで自動 |
| Sandboxingサンドボックス | ✘ No — full system access✘ なし — システム全体にアクセス可 | ✔ Yes — good isolation✔ あり — 分離しっかりしてる | ✔ Yes — strict by default✔ あり — デフォルトで厳格 |
| Nobara KDE supportNobara KDE対応 | ✔ Native✔ ネイティブ対応 | ✔ Great✔ 問題なし | ~ Works, needs DNF setup first~ 動くけどDNFでセットアップ必要 |
Rule of thumb: Use DNF first — it's the most native and efficient. Use Flatpak for sandboxed GUI apps or when the DNF version is outdated. Use Snap only if an app is exclusively available there or you specifically need it. 使い分けの目安: まずDNFを試す — 一番ネイティブで効率的。DNF版が古い/壊れてる場合やサンドボックスが欲しいGUIアプリにはFlatpakを使う。Snapはそこにしかないアプリや特別な理由がある時だけ使う感じでOK。
One-click full update via a desktop shortcut in KDE Plasma. Updates Nobara/Fedora repos (via DNF), Flatpaks, and Snap packages all at once. KDE Plasmaのデスクトップショートカットでワンクリック全部更新。Nobara/Fedoraリポジトリ (DNF)、Flatpak、Snapパッケージをまとめてアップデートできるやつ。
Step 1: Create the update script ステップ1: 更新スクリプトを作る
Create a shell script in your home directory: ホームディレクトリにシェルスクリプトを作成:
kate ~/update-all.sh
Paste the following, save, and exit: これ貼って保存して閉じて:
#!/bin/bash
# Full system update — DNF + Flatpak + Snap
sudo dnf upgrade -y
flatpak update -y
sudo snap refresh
Make the script executable: スクリプトを実行可能にする:
chmod +x ~/update-all.sh
sudo dnf upgrade -y updates all Nobara/Fedora/RPM Fusion packages. If you don't use Snap, delete the sudo snap refresh line. Once saved, open a terminal and type ~/update-all.sh to test it. Or use the Fish shell version below.
sudo dnf upgrade -yがNobara/Fedora/RPM Fusionのパッケージを全部更新してくれる。Snap使ってない場合はsudo snap refreshの行は削除してOK。保存したらターミナルで~/update-all.shと打って確認してみて。またはFishシェル版も下にあるよ。
Fish shell alternative: If you use Fish as your shell, create a function file instead: Fishシェルを使う場合: Fishをシェルとして使っているなら、代わりに関数ファイルを作成:
kate ~/.config/fish/functions/update-all.fish
function update-all --description "Update DNF + Flatpaks + Snap in one go"
sudo dnf upgrade -y
flatpak update -y
sudo snap refresh
end
Step 2: Make it clickable from desktop (KDE Plasma .desktop file) ステップ2: デスクトップからクリックできるようにする (KDE Plasmaの.desktopファイル)
Right-click on your desktop → Create New → Text File and name it Update System.desktop デスクトップで右クリック → 新規作成 → テキストファイル 作って名前をUpdate System.desktopに
Open the file and paste this content (adjust if needed): ファイル開いてこの中身貼って(必要ならいじって):
[Desktop Entry]
Name=Update System (DNF + Flatpak + Snap)
Exec=konsole -e bash -c "~/update-all.sh; echo 'Update finished. Press Enter to close...'; read"
Icon=system-software-update
Type=Application
Categories=System;
Save the file and exit. Now right-click the file → Allow Launching (or Properties → Permissions → check "Is executable"). Double-click it anytime to run the full update — it will open Konsole, ask for sudo password if needed, run everything, show a message when done, and wait for you to press Enter before closing. 保存して閉じる。そしたらそのファイル右クリック → 実行を許可(またはプロパティ → アクセス権 → 「実行可能にする」にチェック)。いつでもダブルクリックで全部更新できるよ。Konsole開いてsudoパスワード聞かれたら入れて、全部終わったら「Enter押して閉じてね」って出るから押せばウィンドウ閉まる。
This uses Konsole (default on KDE Plasma in Nobara). If you use a different terminal, change the Exec= line accordingly (e.g., alacritty -e bash -c "..."). Note: Terminal=true is omitted here — it's redundant when Exec= already launches a terminal emulator explicitly.
Konsole使ってる(Nobara KDE Plasmaだとデフォルト)。別のターミナル使ってる人はExec=の部分変えてね(例: alacritty -e bash -c "..."とか)。Terminal=trueは省いてるよ — Exec=で直接ターミナルを起動してるから不要なので。
No apps match your search. 該当するアプリが見つかりませんでした。
In-game memory editor / cheat tool — Linux's answer to Cheat Engine. Scans and modifies process memory values (health, money, stats, etc.) in native Linux games, Wine/Proton games, and emulators. Distributed as an AppImage on Nobara. ゲーム内メモリエディター/チートツール — LinuxのCheat Engine的存在。ネイティブLinuxゲーム・Wine/Protonゲーム・エミュレーターでプロセスメモリの値(HP・お金・ステータスなど)をスキャンして変更できる。NobaraではAppImageで配布。
Step 1: Install AppImageLauncher (prerequisite) ステップ1: AppImageLauncherをインストール(前提条件)
AppImageLauncher integrates AppImages into your KDE app menu and handles updates. Download and install the RPM directly: AppImageLauncherはAppImageをKDEのアプリメニューに統合してアップデートも管理してくれる。RPMを直接ダウンロードしてインストール:
sudo dnf install https://github.com/TheAssassin/AppImageLauncher/releases/download/v3.0.0-beta-3/appimagelauncher_3.0.0-beta-2-gha287.96cb937_x86_64.rpm
If prompted about missing dependencies, DNF will resolve them automatically. After install, log out and back in (or reboot) to activate AppImageLauncher's system integration. 依存関係が足りないと言われても、DNFが自動で解決してくれる。インストール後、AppImageLauncherのシステム統合を有効化するためにログアウト/ログインか再起動してね。
Step 2: Download the PINCE AppImage ステップ2: PINEのAppImageをダウンロード
cd ~/Downloads
curl -L -O https://github.com/korcankaraokcu/PINCE/releases/download/v0.5/PINCE-x86_64.AppImage
Alternatively, download it manually from the PINCE releases page and save it to your Downloads folder. またはPINEリリースページから手動でダウンロードしてDownloadsフォルダに保存してもOK。
Step 3: Make it executable and launch it ステップ3: 実行可能にして起動する
chmod +x ~/Downloads/PINCE-x86_64.AppImage
~/Downloads/PINCE-x86_64.AppImage
When you double-click or run the AppImage for the first time, AppImageLauncher will pop up and ask if you want to integrate it into your system. Click Integrate and run — this moves it to ~/Applications/ and adds PINCE to your KDE app menu so you can launch it like any installed app.
初めてAppImageをダブルクリックするか実行すると、AppImageLauncherがポップアップしてシステムに統合するか聞いてくる。統合して実行をクリック — これが~/Applications/に移動して、KDEアプリメニューにPINCEが追加されるので普通のアプリと同じように起動できる。
Step 4: Attach to your game's process ステップ4: ゲームのプロセスにアタッチ
PINCE needs to run with elevated privileges to read game memory. It will prompt you for your sudo password when it needs it. Start your game first, then in PINCE click Attach to a process. Find your game in the list — for Proton/Steam games look for the game's executable name (e.g. DarkSoulsRemastered.exe or the native binary). Select it and confirm.
PINEはゲームのメモリを読み取るために昇格した権限が必要。必要なときにsudoパスワードを求めてくる。先にゲームを起動してから、PINCEでプロセスにアタッチをクリック。Proton/Steamゲームはexe名(例: DarkSoulsRemastered.exe)かネイティブバイナリで探してね。選択して確認。
Step 5: Scan and modify values ステップ5: 値をスキャンして変更
In the Value field enter your current in-game value (e.g. current HP: 85), choose the correct type (int32 for whole numbers, float for decimals), then click Scan. Go back to the game, let the value change, then return and scan again with the new value. Repeat until you have a small number of results. Double-click a result to add it to the address table, then edit the value there directly. Check the lock checkbox to freeze it.
Value欄に今のゲーム内の値を入力(例: 現在のHP 85)、型を選んで(整数はint32、小数はfloat)Scanをクリック。ゲームに戻って値を変えてから戻って新しい値でもう一度スキャン。結果が少なくなるまで繰り返す。結果をダブルクリックしてアドレステーブルに追加し、そこで値を直接編集。ロックのチェックボックスをオンにすると値が固定される。
⚠ Note: Memory addresses change every time you launch a game — scan again each session. Anti-cheat in online games will detect and ban you — only use in single-player or offline modes. ⚠ 注意: メモリアドレスはゲームを起動するたびに変わるので毎回スキャンが必要。オンラインゲームのアンチチートに検知されBANされる可能性あり — シングルプレイ・オフラインモード専用で使うこと。
Easy way to run local LLMs. Mainly supports GGUF models. ローカルでLLM動かすのに超簡単。主にGGUFモデル対応。
Install: 入れ方:
flatpak install flathub ai.lmstudio.LMStudio
Browser — I use it alongside Brave (some sites like Speechchat.com work better here). ブラウザ — Braveと併用してるよ (Speechchat.comとかBraveで調子悪いサイトで使う)。
Install via Google's official RPM repo (recommended): GoogleのRPMリポジトリからインストール(おすすめ):
sudo dnf install https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
This installs Chrome and automatically adds Google's repo so future updates come via sudo dnf upgrade.
ChromeをインストールしつつGoogleのリポジトリも自動追加されるので、以後はsudo dnf upgradeで更新できる。
Asian input support (Japanese etc.). Install Mozc for Japanese typing. アジア言語入力サポート (日本語とか)。日本語入力ならMozc入れてね。
Install: 入れ方:
sudo dnf install fcitx5 fcitx5-configtool fcitx5-qt fcitx5-gtk kcm-fcitx5 fcitx5-mozc
Mod for GIMP to make it feel more like Photoshop. Run GIMP once before applying. GIMPをPhotoshopっぽくするMod。適用前にGIMP1回起動しといてね。
Install: 入れ方:
Download the latest Linux version from https://github.com/Diolinux/PhotoGIMP/releases
Extract the archive — you'll get a PhotoGIMP-linux folder containing .config and .local.
https://github.com/Diolinux/PhotoGIMP/releasesから最新のLinux版ダウンロードして展開 — .configと.localが入ったPhotoGIMP-linuxフォルダが出てくる。
⚠ GIMP 3.2 users: The PhotoGIMP archive contains a folder named .config/GIMP/3.0, but GIMP 3.2 looks for .config/GIMP/3.2. Before extracting to your home directory, rename that folder inside the archive (or after extracting) from 3.0 to 3.2, otherwise PhotoGIMP won't load.
⚠ GIMP 3.2を使ってる人へ: PhotoGIMPのアーカイブには.config/GIMP/3.0というフォルダが入ってるけど、GIMP 3.2は.config/GIMP/3.2を読みに行く。ホームに展開する前(または展開後)に、そのフォルダ名を3.0から3.2に変えてね。そのままだとPhotoGIMPが読み込まれないよ。
Once renamed, copy the .config and .local folders to your home directory (overwrite files), then relaunch GIMP — done!
名前変えたら.configと.localフォルダをホームにコピー(上書きOK)して、GIMP再起動したら完了!
PNG optimizer — Losslessly compresses PNG files to reduce file size without losing quality. Great for images, screenshots, web assets, etc. PNG最適化ツール — PNGファイルのサイズを品質落とさずに圧縮。画像とかスクショとかWeb素材に便利。
Install: 入れ方:
sudo dnf install oxipng
Basic usage example: (optimizes all PNGs in the current folder) 基本使い方例: (今いるフォルダの全部のPNG最適化)
oxipng -o max --strip safe *.png
- -o max = maximum compression level
- --strip safe = removes non-essential metadata safely
Run this in the folder containing your PNG files (use cd /path/to/folder first). It overwrites the originals — back up important files first if you're cautious.
- -o max = 最大圧縮レベル
- --strip safe = 余計なメタデータ安全に消す
PNGあるフォルダで実行して(cd /path/to/folderで移動先)。元ファイル上書きするんで大事なやつはバックアップしといてね。
Modern, simple GTK image compressor — Focused on easy compression with lossless PNG mode (uses oxipng backend for PNGs, supports lossy too). Supports PNG, JPEG, WebP, SVG. Great GUI alternative to CLI tools like oxipng. モダンでシンプルなGTK画像圧縮ツール — 簡単に圧縮できて、無損失PNGモードあり (PNGはoxipngバックエンド使ってる、損失圧縮もOK)。PNG, JPEG, WebP, SVG対応。oxipngみたいなCLIのGUI版みたいな感じで便利。
Install (DNF — recommended): 入れ方 (DNF — おすすめ):
sudo dnf install curtail
Alternative (Flatpak): 代替 (Flatpak):
flatpak install flathub com.github.huluti.Curtail
Usage: 使い方:
Launch Curtail, drag files or folders into the window, select lossless compression (safe, no quality loss), and compress. It can overwrite originals or create new files in the same folder. Curtail起動してファイルやフォルダドラッグして、無損失圧縮選んで圧縮。元ファイル上書きか同じフォルダに新ファイル作れる。
Perfect for batch processing images with a nice interface. Lossless mode keeps full quality while reducing size significantly (especially PNGs). If using Flatpak, it may need permissions for file access. 画像バッチ処理にぴったりなインターフェース。無損失モードで品質そのままサイズガッツリ減らせる(特にPNG)。Flatpak版はファイルアクセス権限設定が必要かも。
Reliable for online classes and meetings. オンライン授業とかミーティングで安定してるやつ。
Install: 入れ方:
flatpak install flathub us.zoom.Zoom
For syncing and accessing files (e.g. royalty-free media collections). ファイル同期とかアクセスに便利 (例: ロイヤリティフリーの映画とか音楽集めるとき)。
Install via MEGA's official RPM (recommended): MEGAの公式RPMからインストール(おすすめ):
sudo dnf install https://mega.nz/linux/repo/Fedora_$(rpm -E %fedora)/x86_64/megasync-Fedora_$(rpm -E %fedora).x86_64.rpm
This downloads and installs the MEGA sync client directly from MEGA's servers. If the URL fails (new Fedora version), visit mega.nz/sync and download the Fedora RPM manually. MEGAのサーバーから直接クライアントをダウンロードしてインストール。URLが失敗する場合(新しいFedoraバージョン)はmega.nz/syncからFedora RPMを手動でダウンロードしてね。
TeamSpeakFlatpakLow-latency voice chat client. Popular for gaming clans, teams, and communities — clear audio, low CPU usage, and great for large groups with channels/permissions. 低遅延ボイスチャットクライアント。ゲーミングクランやチーム、コミュニティで人気 — 音質クリアでCPU負荷低め、大人数のチャンネル/権限管理も便利。
Install via Flatpak (recommended on Nobara): Flatpakでインストール(Nobaraではおすすめ):
flatpak install flathub com.teamspeak.TeamSpeak
The Flatpak version stays up to date via flatpak update and is the easiest install method on Fedora-based systems.
Flatpak版はflatpak updateで最新状態を維持できて、Fedoraベースのシステムで一番簡単な導入方法。
RetroArchDNFAll-in-one frontend for emulators. Supports tons of retro systems with shaders, save states, netplay, and more. エミュレータ全部まとめたフロントエンド。レトロ機種めっちゃ対応してて、シェーダー・セーブステート・ネットプレイとか色々できる神ツール。
Install (core + most emulators): インストール(コア+ほとんどのエミュ):
sudo dnf upgrade
sudo dnf install retroarch
For extra cores not in the Fedora repos, use Flatpak — it includes a much larger selection of libretro cores via RetroArch's built-in Online Updater. Fedoraリポジトリにないコアが必要な場合はFlatpak版を使うと、RetroArchのオンラインアップデーター経由でlibretroコアをたくさん取得できる。
BIOS Files (must be legal): BIOSファイル(合法的にダンプしたもののみ):
Dump from your own hardware. Place in ~/.config/retroarch/system/ or emulator-specific folders.
自分のハードから合法的にダンプしてね。~/.config/retroarch/system/かエミュごとのフォルダに入れる。
Recommended game format: おすすめゲーム形式:
Use .chd (compressed, single file) — create with chdman from mame-tools package.
.chd(圧縮されて1ファイル)がおすすめ。MAMEのchdmanで作れるよ(sudo dnf install mame-toolsで入る)。
Legal note: Only use ROMs/ISOs you legally own (dump your own discs/cartridges). Sites hosting "abandonware" ROMs/ISOs are at your own risk — scan for malware, use adblockers/VPN if needed. 合法的に: 自分で所有してるROM/ISOだけ使ってね(ディスク/カートリッジから自分でダンプ)。「アバドンウェア」置いてるサイトは自己責任で—マルウェアスキャンして、アドブロッカー/VPN使った方が安全。
mpvDNFMinimalist, extremely powerful, keyboard-driven media player. Excellent quality, hardware decoding, shaders, scripting — the best player for serious users. 超ミニマルで超高機能なキーボード操作メディアプレイヤー。画質最高、ハードウェアデコード・シェーダー・スクリプト対応、本気勢に一番おすすめのプレイヤー。
Install mpv (stable version): mpvのインストール(安定版):
sudo dnf install mpv
Install modern uosc UI (highly recommended): モダンなuosc UIを入れる(超おすすめ):
git clone https://github.com/tomasklaen/uosc.git /tmp/uosc
mkdir -p ~/.config/mpv/scripts ~/.config/mpv/script-opts ~/.config/mpv/fonts
cp -r /tmp/uosc/src/uosc ~/.config/mpv/scripts/uosc
cp /tmp/uosc/src/uosc.conf ~/.config/mpv/script-opts/uosc.conf
cp -r /tmp/uosc/src/fonts/. ~/.config/mpv/fonts/
rm -rf /tmp/uosc
On Nobara/Fedora there is no mpv-uosc package like on Arch, so we clone uosc directly from GitHub and place the files manually. Run this once — no further setup needed.
Nobara/FedoraにはArchのようなmpv-uoscパッケージがないので、GitHubから直接クローンして手動でファイルを配置する。一度実行するだけで追加設定不要。
Basic recommended config (~/.config/mpv/mpv.conf): おすすめ基本設定 (~/.config/mpv/mpv.conf):
kate ~/.config/mpv/mpv.conf
# uosc integration
osc=no
osd-bar=no
border=no
# Nice extras
keep-open=yes
save-position-on-quit=yes
autofit-larger=80%x80%
# Real-time dynamic normalization (very good for dialogue + explosions)
af=dynaudnorm=f=150:r=0.9:g=15
Quick explanation of settings:osc=no osd-bar=no border=no → disables default on-screen controls (uosc replaces them)keep-open=yes → window stays open after video endssave-position-on-quit=yes → remembers where you stoppedautofit-larger=80%x80% → scales video to max 80% of screen (nice for large monitors)af=dynaudnorm=... → dynamic audio normalization (makes quiet dialogue louder, caps explosions — very useful)
設定の簡単な説明:osc=no osd-bar=no border=no → デフォルトの画面コントローラー消す(uoscが代わりになる)keep-open=yes → 動画終わってもウィンドウ閉じないsave-position-on-quit=yes → どこまで見たか覚えてくれるautofit-larger=80%x80% → 画面の80%以内に自動調整(大画面で見やすい)af=dynaudnorm=... → 音量自動調整(静かなセリフ大きく、爆発は抑える — めっちゃ便利)
OBS StudioDNFScreen recorder and live streaming software. On Nobara, OBS Studio is pre-installed and comes with browser integration and streaming patches already applied — no extra packages needed. 画面録画とライブ配信ソフト。Nobaraでは OBS Studio がプリインストールされていて、ブラウザ統合やストリーミングのパッチも最初から適用済み — 追加パッケージ不要。
If not already installed or to reinstall: まだインストールされていない場合や再インストールする場合:
sudo dnf install obs-studio
Why Nobara's OBS is special: NobaraのOBSが特別な理由:
• Nobara ships OBS with browser source integration built in (enables YouTube login, chat overlays, donation alerts).
• Includes GloriousEggroll's streaming patches for better encoding performance.
• Pipewire/Wayland screen capture works out of the box — no manual configuration needed.
• Nobaraのリポジトリにはブラウザソース統合が最初から含まれている(YouTubeログイン、チャットオーバーレイ、投げ銭アラートが使える)。
• GloriousEggrollのストリーミングパッチ適用済みでエンコード性能アップ。
• Pipewire/Waylandの画面キャプチャーも設定なしでそのまま動く。
Free, open-source, cross-platform audio editor. Great for voiceover work, podcast recording, noise removal, audio cleanup, and basic multi-track editing. Supports WAV, MP3, FLAC, OGG, and more. 無料・オープンソースのクロスプラットフォーム音声エディター。ボイスオーバー、ポッドキャスト録音、ノイズ除去、音声クリーンアップ、基本的なマルチトラック編集に最適。WAV・MP3・FLAC・OGGなど対応。
Install via DNF (recommended): DNFでインストール(おすすめ):
sudo dnf install audacity
Alternative — Flatpak (more up-to-date version): 代替 — Flatpak(より新しいバージョン):
flatpak install flathub org.audacityteam.Audacity
The Flatpak version tends to be more up-to-date than the DNF repo version. However, it may need Flatpak file permissions to access your audio files — grant these via Flatseal if needed (flatpak install flathub com.github.tchx84.Flatseal).
Flatpak版はDNFリポジトリ版より新しいことが多い。ただし音声ファイルへのアクセスにFlatpakのファイル権限設定が必要な場合あり — 必要なら Flatseal で許可してね(flatpak install flathub com.github.tchx84.Flatseal)。
Recommended settings for voiceover / recording: ボイスオーバー/録音向けおすすめ設定:
1. Go to Edit → Preferences → Devices — set your microphone as the recording device and set channels to 1 (Mono) for voiceover work.
2. Set sample rate to 44100 Hz (or 48000 Hz for video use) under Preferences → Quality.
3. Use Effect → Noise Reduction to clean background noise: first select a silent section of your recording, click Get Noise Profile, then select all (Ctrl+A) and apply.
1. 編集 → 設定 → デバイス — マイクを録音デバイスに設定、ボイスオーバーはチャンネルを1 (モノ)に。
2. 設定 → 品質 でサンプルレートを44100 Hz(動画用なら48000 Hz)に設定。
3. ノイズ除去はエフェクト → ノイズ低減で:まず無音部分を選択してノイズプロファイルを取得、次に全選択(Ctrl+A)して適用。
Export formats: Use File → Export Audio to save. For voice/podcast use MP3 (requires the LAME encoder — Nobara's DNF version includes it; Flatpak version also bundles it). For lossless archiving use FLAC or WAV. エクスポート形式: ファイル → 音声のエクスポートで保存。音声/ポッドキャストはMP3(LAMEエンコーダーが必要 — Nobara DNF版には含まれてる、Flatpak版もバンドルされてる)。ロスレス保存ならFLACかWAV。
Private, end-to-end encrypted messaging app. Great for secure chat, voice and video calls, and file sharing — no ads, no data collection. プライベートでエンドツーエンド暗号化されたメッセージングアプリ。安全なチャット・音声/ビデオ通話・ファイル共有に最適 — 広告なし、データ収集なし。
Install: 入れ方:
flatpak install flathub org.signal.Signal
Signal requires a phone number to register. The desktop app links to your phone's Signal account — open Signal on your phone, go to Settings → Linked Devices and scan the QR code shown in the desktop app on first launch. Signalの登録には電話番号が必要。デスクトップアプリはスマホのSignalアカウントに紐付ける — スマホのSignalで設定 → リンクされたデバイスを開いて、デスクトップアプリ初回起動時に表示されるQRコードをスキャンしてね。