summaryrefslogtreecommitdiffstats
path: root/swayidle
diff options
context:
space:
mode:
authorLibravatar Mattias Eriksson <snaggen@mayam.com>2018-05-13 00:36:52 +0200
committerLibravatar Mattias Eriksson <snaggen@mayam.com>2018-05-13 00:36:52 +0200
commitf40049b5cd8d0274a62399cbdd1f8fd0e7668be3 (patch)
tree5dd541a76c22d63d38d1510c711d85240e28bb09 /swayidle
parentIdle handling for dpms/lockscreen et al (diff)
downloadsway-f40049b5cd8d0274a62399cbdd1f8fd0e7668be3.tar.gz
sway-f40049b5cd8d0274a62399cbdd1f8fd0e7668be3.tar.zst
sway-f40049b5cd8d0274a62399cbdd1f8fd0e7668be3.zip
Remove asciidoc file for swayidle
Diffstat (limited to 'swayidle')
-rw-r--r--swayidle/swayidle.1.txt67
1 files changed, 0 insertions, 67 deletions
diff --git a/swayidle/swayidle.1.txt b/swayidle/swayidle.1.txt
deleted file mode 100644
index a32e6fd5..00000000
--- a/swayidle/swayidle.1.txt
+++ /dev/null
@@ -1,67 +0,0 @@
1/////
2vim:set ts=4 sw=4 tw=82 noet:
3/////
4:quotes.~:
5
6swayidle (1)
7============
8
9Name
10----
11swayidle - Idle manager for Wayland
12
13Synopsis
14--------
15'swayidle' [options] [events...]
16
17Options
18-------
19
20*-h*::
21 Show help message and quit.
22
23*-d*::
24 Enable debug output.
25
26Description
27-----------
28
29swayidle listens for idle activity on your Wayland compositor and executes tasks
30on various idle-related events. You can specify any number of events at the
31command line.
32
33Events
34------
35
36*timeout* <timeout> <timeout command> [resume <resume command>]::
37 Execute <timeout command> if there is no activity for <timeout> seconds.
38 +
39 If you specify "resume <resume command>", <resume command> will be run when
40 there is activity again.
41
42*before-sleep* <command>::
43 If built with systemd support, executes <command> before systemd puts the
44 computer to sleep.
45
46All commands are executed in a shell.
47
48Example
49-------
50
51 swayidle \
52 timeout 300 'swaylock -c 000000' \
53 timeout 600 'swaymsg "output * dpms off"' \
54 resume 'swaymsg "output * dpms on"' \
55 before-sleep 'swaylock -c 000000'
56
57This will lock your screen after 300 seconds of inactivity, then turn off your
58displays after another 600 seconds, and turn your screens back on when resumed.
59It will also lock your screen before your computer goes to sleep.
60
61Authors
62-------
63
64Maintained by Drew DeVault <sir@cmpwn.com>, who is assisted by other open
65source contributors. For more information about sway development, see
66<https://github.com/swaywm/sway>.
67