mirror of
https://github.com/swaywm/sway.git
synced 2024-11-12 21:43:59 +01:00
Page:
i3 Migration Guide
Pages
Debian 10 (Buster) Installation
Debugging flags
Development Setup
Differences from i3
Distributions
GTK 3 settings on Wayland
Home
Multihead setup with X11 backend
Running Sway with seatd, elogind or systemd‐logind
Running programs natively under Wayland
Setting Environmental Variables
Shortcut handling
Startup (process manager) Integration
Tricks
Ubuntu 20.04 Installation
Unsupported packages
Useful add ons for sway
VRR setups
XDG Desktop Portal configuration
i3 Migration Guide
systemd integration
89
i3 Migration Guide
Aaron edited this page 2024-10-23 20:15:27 -07:00
Table of Contents
Sway is almost a drop-in replacement for i3, but you may have to make a few changes to get everything working correctly. Here are a few common ones:
- Use the
output
command to configure outputs instead of xrandr - Use the
output
command to configure your wallpaper instead of feh - Use the
input
command to configure input devices - Replace usage of
i3
specific programs with the equivalent sway tools:i3-msg
→swaymsg
i3lock
→swaylock
i3-nagbar
→swaynag
i3bar
→swaybar
i3status
→ Alternative bar content generators
- Sway handles quotes slightly differently - commands are handled more like shell commands
- To emulate
xset dpms force off
, useswayidle timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"'
then runpkill -USR1 swayidle
to trigger timeout immediately.
Font configuration
Sway does not support X logical font description (XLFD) configuration strings. Instead it uses Pango, and one can use pango-list | grep [fontname]
to confirm the correct font name. Pango, as of version 1.44, does not support older bitmap fonts (BFD), although it does support bitmap-only OTF fonts.
Common X11 apps used on i3 with Wayland alternatives
- xbacklight (backlight management) → brightnessctl
- dunst (notification daemon) → dunst (supports wayland) / mako / fnott / swaync
- feh (wallpaper setting) → sway output configuration, see
man 5 sway-output
(or ~oguri~ swww, which supports animated wallpapers), wbg - scrot (screenshot) → grim + slurp (or grimshot, which wraps around both).
- picom / compton / xcompmgr (compositor) → built in
- unclutter (hiding cursor after some time) →
seat <name> hide_cursor <timeout>
- xbanish (hiding cursor on keypress) →
seat <name> hide_cursor when-typing enable
- xclip / xsel (clipboard copy/paste) → wl-clipboard, wlsnarf wl-clipboard-rs, wayclip
- clipster / etc. (clipboard manager) → cliphist, wl-clipboard-history
- xdotool → wtype, wlrctl,
swaymsg seat <seat> cursor …
, dotool, ydotool - xrandr →
swaymsg output …
, wlr-randr - arandr (GUI to configure outputs) → wdisplays
- autorandr → kanshi
- screenkey (screencast tool to display your keys) → wshowkeys, showmethekey
- X11 forwarding → waypipe
- xev → wev
- xmodmap → custom keymap file, interception-tools
- xprop → wlprop
- xob → wob
- dmenu → wmenu, mew, bemenu, fuzzel, gmenu, wldash
- bemenu: To use the same color scheme used in dmenu, use
bemenu-run -p "" --tb "#285577" --hb "#285577" --tf "#eeeeee" --hf "#eeeeee" --nf "#bbbbbb"
- bemenu: To use the same color scheme used in dmenu, use
- rofi → wofi, rofi patch
- ffmpeg x11grab (screen recorder) → wf-recorder, txproto
- VNC → wayvnc
- Redshift → gammastep, wlsunset
- slock → waylock, wlock
- kbdd (per-window keyboard layout) → swaykbdd
- sxhkd (an X daemon that reacts to input events by executing commands), shkd (a simple hotkey daemon for the Linux console. ) → swhkd
- synergy (client) → waynergy
- (n)sxiv (image viewer) → imv
See Also
- FAQ
- Differences from i3
- The man pages (start with
man sway
)