Hi,
I’m switching from Windows to Fedora and would like to set up my working environment using a window manager. I installed Hyprland following this tutorial. However, some features are missing in Hyprland that don’t suit my workflow—such as window minimize functionality and control buttons.
I tried installing i3 using this guide (both methods), but when I run the i3
command in a Plasma session, I get the following error:
ERROR: Another window manager is already running (WM_Sn is owned)
When I log into the i3 session directly, I only see my wallpaper—no terminal or other applications open by default.
My window manager is wayland .
My .config/i3/config is trhe following:
# Basic i3 config for KDE integration
# Plasma compatibility improvements
# Plasma compatibility improvements
for_window [window_role="pop-up"] floating enable
for_window [window_role="task_dialog"] floating enable
for_window [title="Desktop — Plasma"] kill, floating enable, border none
for_window [title="Arbeitsfläche — Plasma"] kill, floating enable, border none
for_window [class="yakuake"] floating enable
for_window [class="systemsettings"] floating enable
for_window [class="plasmashell"] floating enable
for_window [class="Plasma"] floating enable, border none
for_window [title="plasma-desktop"] floating enable, border none
for_window [title="win7"] floating enable, border none
for_window [class="krunner"] floating enable, border none
for_window [class="Kmix"] floating enable, border none
for_window [class="Klipper"] floating enable, border none
for_window [class="Plasmoidviewer"] floating enable, border none
for_window [class="plasmashell" window_type="notification"] border none, move position 70 ppt 81 ppt
no_focus [class="plasmashell" window_type="notification"]
# Font for window titles
font pango:DejaVu Sans Mono 10
# Use Super key as mod key
set $mod Mod4
# Start a terminal
bindsym $mod+Return exec konsole
# Kill focused window
bindsym $mod+Shift+q kill
# Start dmenu (a program launcher)
bindsym $mod+d exec --no-startup-id dmenu_run
# Change focus
bindsym $mod+j focus left
bindsym $mod+k focus down
bindsym $mod+l focus up
bindsym $mod+semicolon focus right
# Alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# Move focused window
bindsym $mod+Shift+j move left
bindsym $mod+Shift+k move down
bindsym $mod+Shift+l move up
bindsym $mod+Shift+semicolon move right
# Alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# Switch back to KWin if needed
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'Back to KDE?' -B 'Yes' 'kwin_x11 --replace &'"
# Restart i3 inplace
bindsym $mod+Shift+r restart
Could someone please help me figure this out?
Thank you!