From 0d24404431e360c815812c8aef52146499adf6aa Mon Sep 17 00:00:00 2001 From: xM8WVqaG <44505331+xM8WVqaG@users.noreply.github.com> Date: Thu, 12 May 2022 21:56:20 +0100 Subject: [PATCH] Expand on actual names of sway implementations of i3 programs --- i3-Migration-Guide.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/i3-Migration-Guide.md b/i3-Migration-Guide.md index 130279f..61ae63f 100644 --- a/i3-Migration-Guide.md +++ b/i3-Migration-Guide.md @@ -3,7 +3,10 @@ Sway is *almost* a drop-in replacement for i3, but you may have to make a few ch * 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-msg`, `i3lock`, and so on, with the equivalent sway tools. +* Replace usage of `i3` specific programs with the equivalent sway tools: + * `i3-msg` → `swaymsg` + * `i3lock` → [`swaylock`](https://github.com/swaywm/swaylock) + * `i3-nag` → `swaynag` * Sway handles quotes slightly differently - commands are handled more like shell commands * To emulate `xset dpms force off`, use `swayidle timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"'` then run `pkill -USR1 swayidle` to trigger timeout immediately.