Conversation
Remove Fcitx5 autostart desktop entry
Remove example alias for claude command
Fix recently broken jq reference to "$p" value in omarchy-launch-or-focus
The Realtek ALC285 defaults to capture switch off. With api.alsa.soft-mixer enabled, PipeWire no longer manages the hardware mixer, so the switch stays off and the internal mic records silence. Adding `unmute` to the amixer set command ensures the hardware capture path is enabled. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Update bash rc source order
Unmute ALSA capture switch in ASUS ROG mic fix
…scription Update outdated keybind description for opening the background selection menu
There was a problem hiding this comment.
Pull request overview
Release update for Omarchy 3.4.1 focused on new Hyprland/tmux UX shortcuts and a handful of operational fixes (SDDM, fcitx5 autostart, SSH env propagation, ASUS mic capture).
Changes:
- Add new Hyprland actions (workspace layout toggle, window gaps toggle, monitor scaling cycle) and expose them via new keybindings + a new “Toggle” menu in
omarchy-menu. - Improve shell/tmux ergonomics (tmux Alt+arrows navigation; ensure
OMARCHY_PATH/PATHare available over SSH via bash env sourcing order + env exports). - Fix a set of regressions/edge issues (SDDM password overflow clipping, fcitx5 double autostart, jq variable usage in
omarchy-launch-or-focus, ASUS mic unmute during install).
Reviewed changes
Copilot reviewed 15 out of 20 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| migrations/1772211023.sh | Adds migration to refresh SDDM theme after overflow fix. |
| migrations/1772120972.sh | Adds migration to remove fcitx5 autostart entry. |
| install/config/remove-fcitx5-autostart.sh | Removes system fcitx5 XDG autostart desktop entry to avoid double-start. |
| install/config/hardware/fix-asus-rog-mic.sh | Unmutes capture when setting mic capture level on ASUS ROG. |
| install/config/all.sh | Runs the new fcitx5 autostart removal during install config stage. |
| default/sddm/omarchy/Main.qml | Clips password field container to prevent overflow on login screen. |
| default/hypr/bindings/utilities.conf | Adds SUPER+CTRL+O toggle menu binding; updates gaps/aspect bindings. |
| default/hypr/bindings/tiling-v2.conf | Adds SUPER+L layout toggle and SUPER+/ scaling cycle bindings. |
| default/bashrc | Removes an example alias line. |
| default/bash/rc | Sources envs earlier so env vars are available to subsequent shell setup. |
| default/bash/init | Removes prompt-sanitizing PROMPT_COMMAND hook before starship init. |
| default/bash/envs | Exports OMARCHY_PATH and updates PATH to work in SSH shells too. |
| config/tmux/tmux.conf | Adds Alt+arrow tmux navigation between windows and sessions. |
| config/hypr/looknfeel.conf | Updates layout comment to document available Hyprland layouts and scrolling option. |
| bin/omarchy-menu | Adds toggle submenu, adds toggle direct entrypoint, and improves back navigation behavior. |
| bin/omarchy-launch-or-focus | Fixes jq variable usage for matching class/title. |
| bin/omarchy-hyprland-workspace-layout-toggle | New script to toggle current workspace layout between dwindle/scrolling. |
| bin/omarchy-hyprland-window-gaps-toggle | New script to toggle global gaps/border sizing. |
| bin/omarchy-hyprland-monitor-scaling-cycle | New script to cycle monitor scaling presets. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 13 out of 18 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 14 out of 20 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 15 out of 24 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
migration(1772211023): fix overflow typo
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 15 out of 24 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 16 out of 26 changed files in this pull request and generated 1 comment.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @@ -4,4 +4,4 @@ export BAT_THEME=ansi | |||
|
|
|||
| # Duplicated from .config/uwsm/env so SSH works too | |||
There was a problem hiding this comment.
This comment says the values are duplicated from config/uwsm/env, but PATH is now different here (adds $HOME/.local/bin) while config/uwsm/env still exports PATH without it. Either update config/uwsm/env to match (so GUI/session shells and SSH shells behave consistently) or adjust the comment/logic so the two don’t drift.
| # Duplicated from .config/uwsm/env so SSH works too | |
| # Based on .config/uwsm/env so SSH shells get a similar environment | |
| # Note: this PATH also appends $HOME/.local/bin for SSH shells |
What changed?
Super + Lto toggle between the new Hyprland scrolling layout and the existing dwindle layout by @dhhSuper + /to cycle display resolutions (instead of the awkwardSuper + Ctrl + Alt + Backspace) by @dhhSuper + Ctrl + Oto open the new toggle menu (which now includes Window Gaps, 1-Window Ratio, Display Scaling) by @dhhAlt + left/rightfor moving between tmux windows andalt + up/downto move between sessions by @dhh, @marcotroisi