Moved to GitHub
https://github.com/tdemin/i3
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.. | ||
README | 12 years ago | |
boolstr.c | 2 years ago | |
create_socket.c | 3 years ago | |
dpi.c | 3 years ago | |
draw_util.c | 2 years ago | |
fake_configure_notify.c | 3 years ago | |
font.c | 3 years ago | |
format_placeholders.c | 3 years ago | |
g_utf8_make_valid.c | 3 years ago | |
get_colorpixel.c | 3 years ago | |
get_config_path.c | 3 years ago | |
get_exe_path.c | 3 years ago | |
get_mod_mask.c | 3 years ago | |
get_process_filename.c | 2 years ago | |
get_visualtype.c | 9 years ago | |
ipc_connect.c | 3 years ago | |
ipc_recv_message.c | 3 years ago | |
ipc_send_message.c | 3 years ago | |
is_background_set.c | 2 years ago | |
is_debug_build.c | 3 years ago | |
mkdirp.c | 3 years ago | |
nonblock.c | 3 years ago | |
path_exists.c | 3 years ago | |
resolve_tilde.c | 5 years ago | |
root_atom_contents.c | 3 years ago | |
safewrappers.c | 3 years ago | |
screenshot_wallpaper.c | 2 years ago | |
string.c | 3 years ago | |
strndup.c | 3 years ago | |
ucs2_conversion.c | 3 years ago |
README
Introduction
============
libi3 is an *INTERNAL* library which contains functions that i3 and related
tools (i3-msg, i3-input, i3-nagbar, i3-config-wizard, i3bar) use.
It is NOT to be used by other programs.
Structure
=========
Every function gets its own .c file, which in turn gets compiled into an .o
object file. Afterwards, all .o files are archived into one static library
(libi3.a). This library will be linked into all i3 binaries. The linker is able
to eliminate unused .o files when linking, so only the functions which you
actually use will be included in the corresponding binary.