You are not logged in.

#1 2010-10-04 11:00:08

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

[SOLVED] Binding irssi in dwm

Having a bit of trouble binding irssi to dwm. When I try to compile and build it gives me an error:

config.h:24:29: error: 'irssi' undeclared here (not in a function)
make: *** [dwm.o] Error 1
Aborting...

Here is my config.h:

/* See LICENSE file for copyright and license details. */

/* appearance */
static const char font[]            = "-*-terminus-medium-r-*-*-16-*-*-*-*-*-*-*";
static const char normbordercolor[] = "#212121";
static const char normbgcolor[]     = "#2E3436";
static const char normfgcolor[]     = "#696969";
static const char selbordercolor[]  = "#696969";
static const char selbgcolor[]      = "#2E3436";
static const char selfgcolor[]      = "#E0E0E0";
static const unsigned int borderpx  = 1;        /* border pixel of windows */
static const unsigned int snap      = 32;       /* snap pixel */
static const Bool showbar           = True;     /* False means no bar */
static const Bool topbar            = True;     /* False means bottom bar */

/* tagging */
static const char *tags[] = { "cli", "dev", "www", "email", "irc", "av" };

static const Rule rules[] = {
    /* class      instance    title       tags mask     isfloating   monitor */
    { "Gimp",     NULL,       NULL,       0,            True,        -1 },
    { "Firefox",  NULL,       NULL,       1 << 8,       False,       -1 },
        { "Chromium",  NULL,   NULL,      1 << 2,       False,       -1 },
    { NULL,         NULL,      irssi,         1 << 4,      False,        -1 },
};

/* layout(s) */
static const float mfact      = 0.55; /* factor of master area size [0.05..0.95] */
static const Bool resizehints = True; /* True means respect size hints in tiled resizals */

static const Layout layouts[] = {
    /* symbol     arrange function */
    { "[T]",      tile },    /* first entry is default */
    { "[F]",      NULL },    /* no layout function means floating behavior */
    { "[M]",      monocle },
};

/* key definitions */
#define MODKEY Mod1Mask
#define TAGKEYS(KEY,TAG) \
    { MODKEY,                       KEY,      view,           {.ui = 1 << TAG} }, \
    { MODKEY|ControlMask,           KEY,      toggleview,     {.ui = 1 << TAG} }, \
    { MODKEY|ShiftMask,             KEY,      tag,            {.ui = 1 << TAG} }, \
    { MODKEY|ControlMask|ShiftMask, KEY,      toggletag,      {.ui = 1 << TAG} },

/* helper for spawning shell commands in the pre dwm-5.0 fashion */
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }

/* commands */
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL };
static const char *termcmd[]  = { "uxterm", NULL };
static const char *webcmd[] = { "chromium", NULL }; 
static const char *irccmd[] = { "uxterm", "-title", "irssi", "-e", "irssi", NULL };

static Key keys[] = {
    /* modifier                     key        function        argument */
    { MODKEY,                       XK_p,      spawn,          {.v = dmenucmd } },
    { MODKEY|ShiftMask,             XK_Return, spawn,          {.v = termcmd } },
    {MODKEY,                        XK_w,    spawn,                {.v = webcmd} },
    {MODKEY,            XK_z,        spawn,           {.v = irccmd} },
    { MODKEY,                       XK_b,      togglebar,      {0} },
    { MODKEY,                       XK_j,      focusstack,     {.i = +1 } },
    { MODKEY,                       XK_k,      focusstack,     {.i = -1 } },
    { MODKEY,                       XK_h,      setmfact,       {.f = -0.05} },
    { MODKEY,                       XK_l,      setmfact,       {.f = +0.05} },
    { MODKEY,                       XK_Return, zoom,           {0} },
    { MODKEY,                       XK_Tab,    view,           {0} },
    { MODKEY|ShiftMask,             XK_c,      killclient,     {0} },
    { MODKEY,                       XK_t,      setlayout,      {.v = &layouts[0]} },
    { MODKEY,                       XK_f,      setlayout,      {.v = &layouts[1]} },
    { MODKEY,                       XK_m,      setlayout,      {.v = &layouts[2]} },
    { MODKEY,                       XK_space,  setlayout,      {0} },
    { MODKEY|ShiftMask,             XK_space,  togglefloating, {0} },
    { MODKEY,                       XK_0,      view,           {.ui = ~0 } },
    { MODKEY|ShiftMask,             XK_0,      tag,            {.ui = ~0 } },
    { MODKEY,                       XK_comma,  focusmon,       {.i = -1 } },
    { MODKEY,                       XK_period, focusmon,       {.i = +1 } },
    { MODKEY|ShiftMask,             XK_comma,  tagmon,         {.i = -1 } },
    { MODKEY|ShiftMask,             XK_period, tagmon,         {.i = +1 } },
    TAGKEYS(                        XK_1,                      0)
    TAGKEYS(                        XK_2,                      1)
    TAGKEYS(                        XK_3,                      2)
    TAGKEYS(                        XK_4,                      3)
    TAGKEYS(                        XK_5,                      4)
    TAGKEYS(                        XK_6,                      5)
    TAGKEYS(                        XK_7,                      6)
    TAGKEYS(                        XK_8,                      7)
    TAGKEYS(                        XK_9,                      8)
    { MODKEY|ShiftMask,             XK_q,      quit,           {0} },
};

/* button definitions */
/* click can be ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
static Button buttons[] = {
    /* click                event mask      button          function        argument */
    { ClkLtSymbol,          0,              Button1,        setlayout,      {0} },
    { ClkLtSymbol,          0,              Button3,        setlayout,      {.v = &layouts[2]} },
    { ClkWinTitle,          0,              Button2,        zoom,           {0} },
    { ClkStatusText,        0,              Button2,        spawn,          {.v = termcmd } },
    { ClkClientWin,         MODKEY,         Button1,        movemouse,      {0} },
    { ClkClientWin,         MODKEY,         Button2,        togglefloating, {0} },
    { ClkClientWin,         MODKEY,         Button3,        resizemouse,    {0} },
    { ClkTagBar,            0,              Button1,        view,           {0} },
    { ClkTagBar,            0,              Button3,        toggleview,     {0} },
    { ClkTagBar,            MODKEY,         Button1,        tag,            {0} },
    { ClkTagBar,            MODKEY,         Button3,        toggletag,      {0} },
};

What am I doing wrong here? Do I need to install a script or something?

Last edited by panthe0n (2010-10-04 15:39:40)


Registered Linux User #523818.

Offline

#2 2010-10-04 11:20:23

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

As the error says, line 24 - irssi needs to be declared/quoted: "irssi"


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#3 2010-10-04 11:24:44

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

As the error says, line 24 - irssi needs to be declared/quoted: "irssi"

I was JUST about to edit my OP and say that I figured that out, haha. I have a habit of making threads and then solving my own problem like a minute later. I have a new problem, though. The keybind works fine, but when I try to close the client, irssi says "irssi: Reloaded configuration." I couldn't close it unless I quit out of dwm. Any ideas?

EDIT: it also doesn't open up in the tag that I specified. HALP.

Last edited by panthe0n (2010-10-04 11:30:33)


Registered Linux User #523818.

Offline

#4 2010-10-04 11:32:33

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

How are you "trying to close the client"?

I just /quit and it closes cleanly...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#5 2010-10-04 11:34:54

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

How are you "trying to close the client"?

I just /quit and it closes cleanly...

My keyboard bind. I tried changing the bind to mod+shift+o but it still did the same thing...


Registered Linux User #523818.

Offline

#6 2010-10-04 11:38:59

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

You don't close the application by using the keybind that you have set up to start it (if I understood you correctly).


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#7 2010-10-04 11:40:46

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

You don't close the application by using the keybind that you have set up to start it (if I understood you correctly).

Haha, you didn't. By keyboard bind I meant my killclient keyboard bind, not the one I had binded to irssi.


Registered Linux User #523818.

Offline

#8 2010-10-04 11:46:30

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

If irssi closes with /quit, I would stick with that... No idea as to why it is respawning unbidden - unless you have something in your .irssi/config.

Do you get the same behaviour with other apps in xterm?


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#9 2010-10-04 11:48:12

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

If irssi closes with /quit, I would stick with that... No idea as to why it is respawning unbidden - unless you have something in your .irssi/config.

Do you get the same behaviour with other apps in xterm?

What? It's not respawning. When I try to close it with my killclient keybind, it doesn't close at all and instead shows a line of text in irssi that says "Reloaded configuration." It doesn't happen with any other CLI apps. They close just fine with the killclient keybind.

Last edited by panthe0n (2010-10-04 11:50:24)


Registered Linux User #523818.

Offline

#10 2010-10-04 11:57:16

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

s/respawn/reload/ whatever...

I'd still use /quit, but if it is bugging you, try playing around with your .irssi/config

And if I kill the client, irssi dies along with it (in Urxvt).


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#11 2010-10-04 11:59:46

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

s/respawn/reload/ whatever...

I'd still use /quit, but if it is bugging you, try playing around with your .irssi/config

And if I kill the client, irssi dies along with it (in Urxvt).

Alright, will do. Any light as to why it's not spawning in the tag I tell it to?


Registered Linux User #523818.

Offline

#12 2010-10-04 12:07:15

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Binding irssi in dwm

No - your config looks OK. Does it consistently open in the wrong tag? Try changing the rule to send it to different tags and see where it pops up - that may provide a clue.


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#13 2010-10-04 12:22:32

panthe0n
Member
From: Noo Zulund
Registered: 2010-09-27
Posts: 33

Re: [SOLVED] Binding irssi in dwm

jasonwryan wrote:

No - your config looks OK. Does it consistently open in the wrong tag? Try changing the rule to send it to different tags and see where it pops up - that may provide a clue.

Nope, didn't change anything. Maybe it's to do with the fact that my terminal has no tag defined to it; it just spawns in the current tag that I'm in. I'm not sure how I'd go about doing that though...


Registered Linux User #523818.

Offline

Board footer

Powered by FluxBB