diff --git a/pages.ko/linux/i3lock.md b/pages.ko/common/i3lock.md similarity index 100% rename from pages.ko/linux/i3lock.md rename to pages.ko/common/i3lock.md diff --git a/pages.ko/linux/swaybg.md b/pages.ko/common/swaybg.md similarity index 100% rename from pages.ko/linux/swaybg.md rename to pages.ko/common/swaybg.md diff --git a/pages.ko/linux/swayidle.md b/pages.ko/common/swayidle.md similarity index 100% rename from pages.ko/linux/swayidle.md rename to pages.ko/common/swayidle.md diff --git a/pages.ko/linux/swaylock.md b/pages.ko/common/swaylock.md similarity index 89% rename from pages.ko/linux/swaylock.md rename to pages.ko/common/swaylock.md index 667df85a5c..8bc9f2e116 100644 --- a/pages.ko/linux/swaylock.md +++ b/pages.ko/common/swaylock.md @@ -19,10 +19,6 @@ `swaylock --no-unlock-indicator` -- 마우스 포인터를 숨기지 않고 화면 잠금: - -`swaylock --pointer {{default}}` - - 모든 모니터에 타일 형식으로 PNG 배경 이미지로 화면 잠금: `swaylock --image {{경로/대상/파일.png}} --tiling` diff --git a/pages.pt_BR/linux/i3lock.md b/pages.pt_BR/common/i3lock.md similarity index 100% rename from pages.pt_BR/linux/i3lock.md rename to pages.pt_BR/common/i3lock.md diff --git a/pages/linux/i3lock.md b/pages/common/i3lock.md similarity index 100% rename from pages/linux/i3lock.md rename to pages/common/i3lock.md diff --git a/pages/linux/swaybg.md b/pages/common/swaybg.md similarity index 100% rename from pages/linux/swaybg.md rename to pages/common/swaybg.md diff --git a/pages/linux/swayidle.md b/pages/common/swayidle.md similarity index 100% rename from pages/linux/swayidle.md rename to pages/common/swayidle.md diff --git a/pages/common/swaylock.md b/pages/common/swaylock.md new file mode 100644 index 0000000000..03af679273 --- /dev/null +++ b/pages/common/swaylock.md @@ -0,0 +1,36 @@ +# swaylock + +> Screen locking utility for Wayland compositors. +> More information: . + +- Lock the screen using the config in `$HOME/.swaylock/config` or `$XDG_CONFIG_HOME/swaylock/config`: + +`swaylock` + +- Lock the screen with a simple color background (`rrggbb` format): + +`swaylock {{[-c|--color]}} {{0000ff}}` + +- Lock the screen with a background image: + +`swaylock {{[-i|--image]}} {{path/to/image}}` + +- Lock the screen and disable the unlock indicator (removes feedback on keypress): + +`swaylock {{[-u|--no-unlock-indicator]}}` + +- Detach from the controlling terminal after locking (like `i3lock`): + +`swaylock {{[-f|--daemonize]}}` + +- Lock the screen with a background image tiled over all monitors: + +`swaylock {{[-i|--image]}} {{path/to/image}} {{[-t|--tiling]}}` + +- Lock the screen and show the number of failed login attempts: + +`swaylock {{[-F|--show-failed-attempts]}}` + +- Load the configuration from a specific file: + +`swaylock {{[-C|--config]}} {{path/to/config}}` diff --git a/pages/linux/swaylock.md b/pages/linux/swaylock.md deleted file mode 100644 index 7ac102209d..0000000000 --- a/pages/linux/swaylock.md +++ /dev/null @@ -1,36 +0,0 @@ -# swaylock - -> Screen locking utility for Wayland compositors. -> More information: . - -- Lock the screen showing a white background: - -`swaylock` - -- Lock the screen with a simple color background (rrggbb format): - -`swaylock --color {{0000ff}}` - -- Lock the screen to a PNG background: - -`swaylock --image {{path/to/file.png}}` - -- Lock the screen and disable the unlock indicator (removes feedback on keypress): - -`swaylock --no-unlock-indicator` - -- Lock the screen and don't hide the mouse pointer: - -`swaylock --pointer {{default}}` - -- Lock the screen to a PNG background tiled over all monitors: - -`swaylock --image {{path/to/file.png}} --tiling` - -- Lock the screen and show the number of failed login attempts: - -`swaylock --show-failed-attempts` - -- Load configuration from a file: - -`swaylock --config {{path/to/config}}`