From mwlucas at michaelwlucas.com Tue Jul 16 18:36:40 2019 From: mwlucas at michaelwlucas.com (Michael W. Lucas) Date: Tue, 16 Jul 2019 18:36:40 -0400 Subject: [Semibug] meeting tonight Message-ID: <20190716223640.GA47939@mail.mwl.io> Family stuff has me tied up tonight, won't be there. Please decide on a talk for August. Thanks, ==ml -- Michael W. Lucas https://mwl.io/ author of: Absolute OpenBSD, SSH Mastery, git commit murder, Immortal Clay, PGP & GPG, Absolute FreeBSD, etc, etc, etc... From jeff at nucleus.mi.org Tue Jul 16 19:03:31 2019 From: jeff at nucleus.mi.org (Jeffrey Marraccini) Date: Tue, 16 Jul 2019 19:03:31 -0400 Subject: [Semibug] meeting tonight In-Reply-To: <20190716223640.GA47939@mail.mwl.io> References: <20190716223640.GA47939@mail.mwl.io> Message-ID: <6A1E8779-7A6D-41FE-BCAB-4B5CDF555301@nucleus.mi.org> Michael, For August, Nick recommends we do a Lightning Round to talk about window managers and pros/cons under the BSD?s. Hope all is well, Jeff > On Jul 16, 2019, at 18:36, Michael W. Lucas wrote: > > > Family stuff has me tied up tonight, won't be there. > > Please decide on a talk for August. > > Thanks, > ==ml > > -- > Michael W. Lucas https://mwl.io/ > author of: Absolute OpenBSD, SSH Mastery, git commit murder, > Immortal Clay, PGP & GPG, Absolute FreeBSD, etc, etc, etc... > > _______________________________________________ > Semibug mailing list > Semibug at lists.nycbug.org > http://lists.nycbug.org:8080/mailman/listinfo/semibug From mwlucas at michaelwlucas.com Tue Jul 16 19:59:51 2019 From: mwlucas at michaelwlucas.com (Michael W. Lucas) Date: Tue, 16 Jul 2019 19:59:51 -0400 Subject: [Semibug] meeting tonight In-Reply-To: <6A1E8779-7A6D-41FE-BCAB-4B5CDF555301@nucleus.mi.org> References: <20190716223640.GA47939@mail.mwl.io> <6A1E8779-7A6D-41FE-BCAB-4B5CDF555301@nucleus.mi.org> Message-ID: <20190716235951.GA83430@mail.mwl.io> I said "decide on a talk," not "come up with options and present them for my approval." ;-) ==ml On Tue, Jul 16, 2019 at 07:03:31PM -0400, Jeffrey Marraccini wrote: > Michael, > > For August, Nick recommends we do a Lightning Round to talk about window managers and pros/cons under the BSD???s. > > Hope all is well, > > Jeff -- Michael W. Lucas https://mwl.io/ author of: Absolute OpenBSD, SSH Mastery, git commit murder, Immortal Clay, PGP & GPG, Absolute FreeBSD, etc, etc, etc... From jeff at nucleus.mi.org Tue Jul 16 21:07:59 2019 From: jeff at nucleus.mi.org (Jeffrey David Marraccini) Date: Tue, 16 Jul 2019 21:07:59 -0400 Subject: [Semibug] meeting tonight In-Reply-To: <20190716235951.GA83430@mail.mwl.io> References: <20190716223640.GA47939@mail.mwl.io> <6A1E8779-7A6D-41FE-BCAB-4B5CDF555301@nucleus.mi.org> <20190716235951.GA83430@mail.mwl.io> Message-ID: It could be worse.? You could have been "volunteered" to do a talk? :-)? As it is, welcome to another 99 Years, O Overlord of SemiBUG! On 2019-07-16 19:59, Michael W. Lucas wrote: > I said "decide on a talk," not "come up with options and present them > for my approval." ;-) > > ==ml > > > On Tue, Jul 16, 2019 at 07:03:31PM -0400, Jeffrey Marraccini wrote: >> Michael, >> >> For August, Nick recommends we do a Lightning Round to talk about window managers and pros/cons under the BSD???s. >> >> Hope all is well, >> >> Jeff > From josh at jggimi.net Tue Jul 16 22:42:00 2019 From: josh at jggimi.net (Josh Grosse) Date: Tue, 16 Jul 2019 22:42:00 -0400 Subject: [Semibug] continuing the trackpad provisioning discussion from tonight's meeting Message-ID: <20190717024200.GA24695@fw2.jggimi.net> During Eddie's presentation, we discussed trackpad / mouse settings. I'd mentioned that I recalled having a mouse related xorg.conf file. I don't, or if I did, well, not any longer. The only xorg.conf file I have defined is for package fonts. Attendees may recall Eddie used xset(1) to add his package fonts during user login. My mouse provisioning is only synclient(1) and syndaemon(1) settings in my ~/.xsession script. I don't use wsconsctli(8) to provision anything. From eddie.thieda at gmail.com Wed Jul 17 00:16:07 2019 From: eddie.thieda at gmail.com (Eddie Thieda) Date: Wed, 17 Jul 2019 00:16:07 -0400 Subject: [Semibug] suckless st Control -/+ patch Message-ID: If anyone's interested in having st (simple terminal) setup the way that I use it to allow Control -/+ to increase/decrease the font size. --Eddie $ git clone git://git.suckless.org/st ...modify to your needs BUT BEFORE compiling apply this patch (below) --- config.def.h Wed Jul 17 00:02:09 2019 +++ /home/eddie/Repos/suckless/st/config.def.h Tue May 21 16:41:45 2019 @@ -170,6 +170,10 @@ { ControlMask, XK_Print, toggleprinter, {.i = 0} }, { ShiftMask, XK_Print, printscreen, {.i = 0} }, { XK_ANY_MOD, XK_Print, printsel, {.i = 0} }, + { ControlMask, XK_equal, zoom, {.f = +1} }, + { ControlMask, XK_minus, zoom, {.f = -1} }, + { ControlMask, XK_KP_Add, zoom, {.f = +1} }, + { ControlMask, XK_KP_Subtract, zoom, {.f = -1} }, { TERMMOD, XK_Prior, zoom, {.f = +1} }, { TERMMOD, XK_Next, zoom, {.f = -1} }, { TERMMOD, XK_Home, zoomreset, {.f = 0} },