set I3_PID atom on the root window
This commit is contained in:
parent
b01d45e027
commit
394b395455
|
@ -27,3 +27,4 @@ xmacro(I3_SOCKET_PATH)
|
|||
xmacro(I3_CONFIG_PATH)
|
||||
xmacro(I3_SYNC)
|
||||
xmacro(I3_SHMLOG_PATH)
|
||||
xmacro(I3_PID)
|
||||
|
|
2
src/x.c
2
src/x.c
|
@ -1030,9 +1030,11 @@ void x_set_name(Con *con, const char *name) {
|
|||
*
|
||||
*/
|
||||
void x_set_i3_atoms(void) {
|
||||
pid_t pid = getpid();
|
||||
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_SOCKET_PATH, A_UTF8_STRING, 8,
|
||||
(current_socketpath == NULL ? 0 : strlen(current_socketpath)),
|
||||
current_socketpath);
|
||||
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_PID, XCB_ATOM_CARDINAL, 32, 1, &pid);
|
||||
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_CONFIG_PATH, A_UTF8_STRING, 8,
|
||||
strlen(current_configpath), current_configpath);
|
||||
xcb_change_property(conn, XCB_PROP_MODE_REPLACE, root, A_I3_SHMLOG_PATH, A_UTF8_STRING, 8,
|
||||
|
|
Loading…
Reference in New Issue