summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-07-06 08:34:47 +0200
committerDave Davenport <qball@gmpclient.org>2016-07-06 08:34:47 +0200
commit342192b4ede8d4b63853ca28218d56a2fdfa3d8a (patch)
tree602b8af174881545087f5a355cd0d1909fd4dfe2 /include
parentdfc952f5709420fe873c163c00a6848b9c822aa9 (diff)
Remove work-around for older i3 version (< 4.9)
- I3 got ewhm support in Feb. 2015.
Diffstat (limited to 'include')
-rw-r--r--include/i3-support.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/i3-support.h b/include/i3-support.h
deleted file mode 100644
index 1d003b72..00000000
--- a/include/i3-support.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef ROFI_I3_H
-#define ROFI_I3_H
-
-/**
- * @defgroup I3Support I3Support
- * @ingroup HELPERS
- *
- * These functions are dummies when i3 support is not compiled in.
- *
- * @{
- */
-
-/**
- * @param id The window to focus on.
- *
- * If we want to switch windows in I3, we use I3 IPC mode.
- * This works more better then sending messages via X11.
- * Hopefully at some point, I3 gets fixed and this is not needed.
- * This function takes the path to the i3 IPC socket, and the XID of the window.
- */
-void i3_support_focus_window ( xcb_window_t id );
-
-/**
- * @param xcb The xcb to read the i3 property from.
- *
- * Get the i3 socket from the X root window.
- * @returns TRUE when i3 is running, FALSE when not.
- */
-
-int i3_support_initialize ( xcb_stuff *xcb );
-
-/**
- * Cleanup.
- */
-void i3_support_free_internals ( void );
-/*@}*/
-#endif // ROFI_I3_H