summaryrefslogtreecommitdiffstats
path: root/desktop/i3-easyfocus/README
diff options
context:
space:
mode:
author Lockywolf <for_sbo.i3-easyfocus_2023-05-25@lockywolf.net>2023-06-02 20:19:52 +0100
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2023-06-03 10:38:21 +0700
commit6c83f154f12d109ac492ce0de00500740a1989a2 (patch)
treedd4afaf43e32998dabe50f2710d7bbc4475ac0eb /desktop/i3-easyfocus/README
parent1aec06f1275ee8532801a65cc210d90961e4da80 (diff)
downloadslackbuilds-6c83f154f12d109ac492ce0de00500740a1989a2.tar.gz
slackbuilds-6c83f154f12d109ac492ce0de00500740a1989a2.tar.xz
desktop/i3-easyfocus: Added (Focus and select windows in i3)
Signed-off-by: bedlam <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/i3-easyfocus/README')
-rw-r--r--desktop/i3-easyfocus/README23
1 files changed, 23 insertions, 0 deletions
diff --git a/desktop/i3-easyfocus/README b/desktop/i3-easyfocus/README
new file mode 100644
index 0000000000..57142867d6
--- /dev/null
+++ b/desktop/i3-easyfocus/README
@@ -0,0 +1,23 @@
+Focus and select windows in [i3](https://github.com/i3/i3).
+
+Draws a small label ('a'-'z') on top of each visible container, which
+can be selected by pressing the corresponding key on the keyboard
+(cancel with ESC). By default, only windows on the current workspace
+are labelled.
+
+Focus the selected window:
+```shell
+./i3-easyfocus
+```
+
+It also possible to only print out the con_id of the selected window
+and, for example, move it to workspace 3:
+
+```shell
+./i3-easyfocus -i | xargs -I {} i3-msg [con_id={}] move workspace 3
+```
+
+Or to print the window id and use it with other commands, like xkill:
+```shell
+./i3-easyfocus -w | xargs xkill -id
+```