Skip to content

Commit

Permalink
man page: Update outdated information (#5478)
Browse files Browse the repository at this point in the history
Instead of correcting some of them, I completely deleted them since the
userguide is always more up-to-date.

Fixes #5477
  • Loading branch information
orestisfl committed Apr 10, 2023
1 parent 74785f4 commit 13474ff
Showing 1 changed file with 8 additions and 15 deletions.
23 changes: 8 additions & 15 deletions man/i3.man
Original file line number Diff line number Diff line change
Expand Up @@ -317,32 +317,25 @@ xsetroot -solid "#333333"
# Enable core dumps in case something goes wrong
ulimit -c unlimited

# Start i3 and log to ~/.i3/logfile
echo "Starting at $(date)" >> ~/.i3/logfile
exec /usr/bin/i3 -V -d all >> ~/.i3/logfile
# Start i3 and log to ~/.local/share/i3/log
mkdir -p ~/.local/share/i3
echo "Starting at $(date)" >> ~/.local/share/i3/log
exec /usr/bin/i3 -V -d all >> ~/.local/share/i3/log
-------------------------------------------------------------

== ENVIRONMENT

=== I3SOCK

This variable overwrites the IPC socket path (placed in
/tmp/i3-%u.XXXXXX/ipc-socket.%p by default, where %u is replaced with your UNIX
username, %p is replaced with i3’s PID and XXXXXX is a string of random
characters from the portable filename character set (see mkdtemp(3))). The IPC
socket is used by external programs like i3-msg(1) or i3bar(1).

== TODO

There is still lot of work to do. Please check our bugtracker for up-to-date
information about tasks which are still not finished.
This variable overwrites the IPC socket path (see userguide for default
location). The IPC socket is used by external programs like i3-msg(1), i3bar(1)
or user-made scripts.

== SEE ALSO

You should have a copy of the userguide (featuring nice screenshots/graphics
which is why this is not integrated into this manpage), the debugging guide,
and the "how to hack" guide. If you are building from source, run:
+make -C docs+
and the "how to hack" guide.

You can also access these documents online at https://i3wm.org/

Expand Down

0 comments on commit 13474ff

Please sign in to comment.