diff options
author | okan | 2013-06-17 17:11:10 +0000 |
---|---|---|
committer | okan | 2013-06-17 17:11:10 +0000 |
commit | 44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75 (patch) | |
tree | 8c660ca028101e2dd039988fef2c9d08764e5f6b /calmwm.c | |
parent | 99bf11e128ef433ba54ef1899d937d2f99f9069b (diff) | |
download | cwm-44880fc9e1b308e5fdd1070fbd2d7fd012b1dc75.tar.gz |
move Cursors into conf.
Diffstat (limited to 'calmwm.c')
-rw-r--r-- | calmwm.c | 14 |
1 files changed, 2 insertions, 12 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: calmwm.c,v 1.77 2013/06/17 14:08:51 okan Exp $ + * $OpenBSD: calmwm.c,v 1.78 2013/06/17 17:11:10 okan Exp $ */ #include <sys/param.h> @@ -38,12 +38,6 @@ char **cwm_argv; Display *X_Dpy; -Cursor Cursor_default; -Cursor Cursor_move; -Cursor Cursor_normal; -Cursor Cursor_question; -Cursor Cursor_resize; - struct screen_ctx_q Screenq = TAILQ_HEAD_INITIALIZER(Screenq); struct client_ctx_q Clientq = TAILQ_HEAD_INITIALIZER(Clientq); @@ -139,11 +133,7 @@ x_init(const char *dpyname) xu_getatoms(); - Cursor_default = XCreateFontCursor(X_Dpy, XC_X_cursor); - Cursor_move = XCreateFontCursor(X_Dpy, XC_fleur); - Cursor_normal = XCreateFontCursor(X_Dpy, XC_left_ptr); - Cursor_question = XCreateFontCursor(X_Dpy, XC_question_arrow); - Cursor_resize = XCreateFontCursor(X_Dpy, XC_bottom_right_corner); + conf_cursor(&Conf); for (i = 0; i < ScreenCount(X_Dpy); i++) screen_init(i); |