2021/12/12

2021-12-12 00:00:15 +0100 <geekosaur> is that broken, or firmware not installed? kernel level -2 often means "no such file or directory" and "unavailable" reported later supports that
2021-12-12 00:00:32 +0100 <geekosaur> so you may just be missing a package
2021-12-12 00:02:14 +0100 <aplainzetakind> Probably.
2021-12-12 00:08:32 +0100 <geekosaur> doing some googling, -2 is indeed no such file or directory. apparently this may not be a problem though
2021-12-12 00:09:53 +0100 <geekosaur> the real wquestion is whether the X server sees the card and can initialize it
2021-12-12 00:10:16 +0100 <geekosaur> in which case you may need an xorg.conf that specifies nouveau instead of intel
2021-12-12 00:12:37 +0100 <geekosaur> https://bbs.archlinux.org/viewtopic.php?id=191566 might be helpful
2021-12-12 00:14:12 +0100Guest81(~Guest81@2a01cb0589202e00edc070a9acc1d4bb.ipv6.abo.wanadoo.fr) (Quit: Client closed)
2021-12-12 00:17:10 +0100twiclo(~twiclo@166.70.36.40)
2021-12-12 00:17:59 +0100 <twiclo> I have a few spawnOns in my startup hook that need to wait on a spawnOnce to finish before they fire off. I found spawnPipe which might work for this but I'm not exactly sure how to add it to my config
2021-12-12 00:18:14 +0100 <twiclo> p.twil.cx/xib
2021-12-12 00:18:19 +0100 <twiclo> The startup hook
2021-12-12 00:22:08 +0100 <geekosaur> spawnPipe won't work for that. https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Util-Run.html#v:runProcessWi… might
2021-12-12 00:22:52 +0100 <geekosaur> (if it doesn't actually need input, specify the empty string)
2021-12-12 00:27:51 +0100 <geekosaur> you also want to replace the spawnOnce with XMonad.Util.SessionStart
2021-12-12 00:28:10 +0100 <geekosaur> which is much the same thing but more general, so you can use it with runProcessWithInputAndWait
2021-12-12 00:32:19 +0100 <twiclo> So replace both the spawnonces>
2021-12-12 00:32:21 +0100 <twiclo> *?
2021-12-12 00:35:16 +0100 <geekosaur> no, just the one you need to wait for (presumably the "feh")
2021-12-12 00:40:38 +0100 <twiclo> https://xmonad.github.io/xmonad-docs/xmonad-contrib/XMonad-Util-SessionStart.html
2021-12-12 00:40:40 +0100 <twiclo> Is this it?
2021-12-12 00:41:25 +0100 <twiclo> There's no just "sessionStart" function
2021-12-12 00:47:13 +0100 <geekosaur> it's called "doOnce"
2021-12-12 00:48:35 +0100 <geekosaur> https://paste.tomsmeding.com/evvkR7S0 is an example of mine
2021-12-12 00:48:58 +0100 <geekosaur> the key parts are the "doOnce" and the "setSessionStarted" at the end of the block
2021-12-12 00:52:06 +0100 <twiclo> So I can put all of it in one doOnce block? And they all run synchronously after that? What does setting setSessionStarted do?
2021-12-12 00:54:57 +0100 <geekosaur> you could replace all the spawnOnce's with ordinary spawns (or spawnOns or whatever) in the doOnce block
2021-12-12 00:55:31 +0100 <geekosaur> setSessionStarted just tells xmonad not to run the doOnce block again on mod-q. I don't recall why it's not just built into doOnce
2021-12-12 00:55:47 +0100seschwar(~seschwar@user/seschwar) (Quit: :wq)
2021-12-12 00:56:26 +0100 <twiclo> On mod-q? You have mod-q set to start the session?
2021-12-12 00:56:39 +0100 <geekosaur> mm, documentation doesn't say. seems to me it ought to be added automatically instead of requiring manual addition, but there it is
2021-12-12 00:57:30 +0100 <geekosaur> no, the whole point of spawnOnce is that the startupHook also runs when you restart xmonad, usually because of a configuration change; the default behavior of mod-q is to recompile your config and restart with the new one
2021-12-12 00:58:02 +0100 <geekosaur> if you don't want everything to restart after a configuration change you use either doOnce or spawnOnce
2021-12-12 00:58:24 +0100 <twiclo> Gotcha. Okay let me try putting this all together
2021-12-12 01:00:05 +0100twiclo(~twiclo@166.70.36.40) (Quit: WeeChat 3.2)
2021-12-12 01:00:51 +0100twiclo(~twiclo@166.70.36.40)
2021-12-12 01:01:10 +0100 <twiclo> Well it compiled but feh still isn't completing in time
2021-12-12 01:01:12 +0100 <twiclo> Should I try one of these delays you have?
2021-12-12 01:03:00 +0100 <geekosaur> no, those just keep my little laptop from falling over when chrome starts at the same time as everything else :)
2021-12-12 01:05:52 +0100 <twiclo> So what can I do?
2021-12-12 01:05:54 +0100 <twiclo> My problem is that feh isn't finishing before urxvt starts and I don't get the fake transparency
2021-12-12 01:06:13 +0100 <twiclo> p.twil.cx/bud
2021-12-12 01:11:46 +0100 <geekosaur> right, the point here is to run feh first, wait for it to finish ("runProcessWithInputAndWait"), then whne it's done run the other things
2021-12-12 01:12:13 +0100 <geekosaur> hm, actually I think you need another optionb to feh for that to work right
2021-12-12 01:12:28 +0100 <geekosaur> need it to put itself into the bckground *after* it has set a background
2021-12-12 01:17:32 +0100 <geekosaur> well.
2021-12-12 01:18:07 +0100 <geekosaur> looks like feh has no mode to put itself into the background after loading an image, so this won't work. you will in fact have to use one of the timers in my startupHook to fake it
2021-12-12 01:18:37 +0100 <geekosaur> feh does not simply run and exit, it keeps running to cycle backgrounds
2021-12-12 01:22:45 +0100 <geekosaur> which means if you wait for it to exit, you'll never get a desktop
2021-12-12 01:38:28 +0100 <twiclo> Sorry, got distracted
2021-12-12 01:40:08 +0100 <twiclo> Feh doesn't continually run. It is once and done
2021-12-12 01:40:51 +0100 <geekosaur> I guess that depends on how you run it. see for example its slideshow mode
2021-12-12 01:40:59 +0100 <geekosaur> that one keeps running
2021-12-12 02:07:58 +0100steve_(~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 260 seconds)
2021-12-12 02:42:23 +0100ectospasm(~ectospasm@user/ectospasm) (Quit: WeeChat 3.3)
2021-12-12 02:46:31 +0100catman(~catman@user/catman) (Quit: WeeChat 3.4-rc1)
2021-12-12 02:47:30 +0100catman(~catman@user/catman)
2021-12-12 03:03:02 +0100twiclo(~twiclo@166.70.36.40) (Ping timeout: 260 seconds)
2021-12-12 03:04:32 +0100AndrewYu(~andrew@user/andrewyu) (Remote host closed the connection)
2021-12-12 03:22:51 +0100ectospasm(~ectospasm@user/ectospasm)
2021-12-12 03:35:30 +0100obimod(~obimod@gateway/vpn/pia/obimod) (Remote host closed the connection)
2021-12-12 03:35:55 +0100obimod(~obimod@gateway/vpn/pia/obimod)
2021-12-12 03:39:38 +0100darkstarx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 03:46:26 +0100obimod(~obimod@gateway/vpn/pia/obimod) (Ping timeout: 260 seconds)
2021-12-12 04:04:10 +0100banc(banc@gateway/vpn/airvpn/banc) (Ping timeout: 260 seconds)
2021-12-12 04:07:38 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 04:08:40 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 04:16:50 +0100pzanco(~Android@2804:14c:3bc3:466:a4b2:cfe3:46ff:192a)
2021-12-12 04:17:31 +0100pzanco(~Android@2804:14c:3bc3:466:a4b2:cfe3:46ff:192a) (Client Quit)
2021-12-12 04:18:04 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 04:19:01 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 04:19:26 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 04:20:06 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 04:20:31 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 04:22:41 +0100banc(banc@gateway/vpn/airvpn/banc)
2021-12-12 04:24:07 +0100darkstardevx(~darkstard@50.39.115.145) (Read error: Connection reset by peer)
2021-12-12 04:27:44 +0100td_(~td@94.134.91.156) (Ping timeout: 256 seconds)
2021-12-12 04:28:01 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 04:28:52 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 04:29:16 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 04:29:27 +0100td_(~td@muedsl-82-207-238-103.citykom.de)
2021-12-12 04:59:42 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 06:16:48 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 06:17:49 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 06:18:43 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 06:19:03 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 06:20:35 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 06:20:35 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 06:44:28 +0100catman(~catman@user/catman) (Ping timeout: 268 seconds)
2021-12-12 06:50:52 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 06:59:39 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 07:00:52 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 07:01:17 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 07:04:31 +0100darkstardevx(~darkstard@50.39.115.145) (Read error: Connection reset by peer)
2021-12-12 07:06:19 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 07:07:26 +0100darkstardevx(~darkstard@50.39.115.145) (Remote host closed the connection)
2021-12-12 07:07:51 +0100darkstardevx(~darkstard@50.39.115.145)
2021-12-12 07:24:11 +0100catman(~catman@user/catman)
2021-12-12 09:10:40 +0100mc47(~mc47@xmonad/TheMC47)
2021-12-12 11:28:03 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 11:28:03 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 11:29:40 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 11:29:40 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 11:30:49 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 11:31:08 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 11:31:33 +0100curiousgay_(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 11:31:33 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 11:31:56 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 12:03:40 +0100qbt(~qbt@user/edun)
2021-12-12 12:03:50 +0100qbt(~qbt@user/edun) (Client Quit)
2021-12-12 12:26:53 +0100seschwar(~seschwar@user/seschwar)
2021-12-12 12:38:28 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 12:42:04 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 12:43:13 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Remote host closed the connection)
2021-12-12 12:46:35 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 13:18:13 +0100mvk(~mvk@2607:fea8:5cdd:f000::9788) (Ping timeout: 252 seconds)
2021-12-12 14:28:10 +0100allbery_b(~geekosaur@xmonad/geekosaur)
2021-12-12 14:28:10 +0100geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2021-12-12 14:28:13 +0100allbery_bgeekosaur
2021-12-12 14:42:44 +0100dschrempf(~dominik@070-207.dynamic.dsl.fonira.net)
2021-12-12 14:45:47 +0100dschrempf(~dominik@070-207.dynamic.dsl.fonira.net) (Client Quit)
2021-12-12 15:33:22 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Read error: Connection reset by peer)
2021-12-12 15:38:05 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 15:52:13 +0100kwer[m](~kwermatri@2001:470:69fc:105::1:4da1)
2021-12-12 17:16:35 +0100qbt(~qbt@user/edun)
2021-12-12 17:16:46 +0100qbt(~qbt@user/edun) (Client Quit)
2021-12-12 17:35:30 +0100kodtose(~kodtose@209.6.137.205)
2021-12-12 17:36:09 +0100kodtose(~kodtose@209.6.137.205) (Quit: Leaving)
2021-12-12 18:56:55 +0100obimod(~obimod@gateway/vpn/pia/obimod)
2021-12-12 18:57:23 +0100gdd(~gdd@129.199.146.230) (Ping timeout: 252 seconds)
2021-12-12 19:00:56 +0100gdd(~gdd@129.199.146.230)
2021-12-12 20:10:43 +0100robinhood0018[m](~robinhood@2001:470:69fc:105::1:4dca)
2021-12-12 20:39:27 +0100obimod(~obimod@gateway/vpn/pia/obimod) (Ping timeout: 250 seconds)
2021-12-12 21:18:52 +0100sagax(~sagax_nb@user/sagax) (Excess Flood)
2021-12-12 21:29:49 +0100mvk(~mvk@2607:fea8:5cdd:f000::9788)
2021-12-12 22:17:25 +0100steve_(~steve@ool-182c2b80.dyn.optonline.net)
2021-12-12 22:51:54 +0100humky(~humky@user/humky)
2021-12-12 22:53:30 +0100mvk(~mvk@2607:fea8:5cdd:f000::9788) (Ping timeout: 260 seconds)
2021-12-12 23:03:09 +0100mvk(~mvk@2607:fea8:5cdd:f000::9788)
2021-12-12 23:14:06 +0100Vermoot(~vermoot@89-158-106-112.rev.numericable.fr) (Remote host closed the connection)
2021-12-12 23:14:52 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net) (Quit: Leaving)
2021-12-12 23:16:21 +0100curiousgay(~curiousga@77-120-141-90.kha.volia.net)
2021-12-12 23:24:25 +0100obimod(~obimod@gateway/vpn/pia/obimod)
2021-12-12 23:34:04 +0100mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2021-12-12 23:41:59 +0100catman(~catman@user/catman) (Quit: WeeChat 3.4-rc1)
2021-12-12 23:42:48 +0100catman(~catman@user/catman)