2023/09/27

2023-09-27 04:10:48 +0200td_(~td@i53870926.versanet.de) (Ping timeout: 258 seconds)
2023-09-27 04:12:30 +0200td_(~td@i53870923.versanet.de)
2023-09-27 05:26:25 +0200horzion(~horzion@ProtonDB/horzion)
2023-09-27 06:12:22 +0200terrorjack(~terrorjac@2a01:4f8:c17:87f8::) (Quit: The Lounge - https://thelounge.chat)
2023-09-27 06:15:12 +0200terrorjack(~terrorjac@2a01:4f8:c17:87f8::)
2023-09-27 08:36:13 +0200horzion(~horzion@ProtonDB/horzion) (Ping timeout: 240 seconds)
2023-09-27 08:39:05 +0200todi(~todi@p4fd1a856.dip0.t-ipconnect.de) (Ping timeout: 240 seconds)
2023-09-27 09:16:16 +0200mc47(~mc47@xmonad/TheMC47)
2023-09-27 09:19:22 +0200 <mc47> @tell huhhuh why not? If you just want to filter out workspaces, you can use filterOutWsPP https://hackage.haskell.org/package/xmonad-contrib-0.17.0/docs/XMonad-Hooks-StatusBar-PP.html#v:fi…
2023-09-27 09:19:22 +0200 <lambdabot> Consider it noted.
2023-09-27 09:25:03 +0200coldpress(~coldpress@72.136.212.35.bc.googleusercontent.com) (Ping timeout: 240 seconds)
2023-09-27 09:25:30 +0200coldpress(~coldpress@72.136.212.35.bc.googleusercontent.com)
2023-09-27 09:47:26 +0200cfricke(~cfricke@user/cfricke)
2023-09-27 09:57:26 +0200mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2023-09-27 09:59:41 +0200mc47(~mc47@xmonad/TheMC47)
2023-09-27 12:04:38 +0200chomwitt(~chomwitt@2a02:587:7a24:b000:1ac0:4dff:fedb:a3f1)
2023-09-27 12:06:44 +0200ft(~ft@p3e9bc680.dip0.t-ipconnect.de) (Quit: leaving)
2023-09-27 13:34:24 +0200Nixkernal(~Nixkernal@119.4.193.178.dynamic.wline.res.cust.swisscom.ch) (Quit: https://quassel-irc.org - Chat comfortably. Anywhere.)
2023-09-27 13:34:44 +0200Nixkernal(~Nixkernal@119.4.193.178.dynamic.wline.res.cust.swisscom.ch)
2023-09-27 14:34:39 +0200huhhuh(~huhhuh@46.100.37.245)
2023-09-27 14:37:06 +0200 <huhhuh> @mc47 Thank you man, that's exactly what I mc47
2023-09-27 14:37:06 +0200 <lambdabot> Unknown command, try @list
2023-09-27 14:37:38 +0200huhhuh(~huhhuh@46.100.37.245) (Client Quit)
2023-09-27 15:52:04 +0200 <haskellbridge> <C​hristina Sørensen> Hey, when using `XMonad.actions.search`, how do I do something like this noogle = S.searchEngine "noogle" "https://noogle.dev/?term=%22query%22"`, where `query` is the place I'd like my search query to go.
2023-09-27 15:52:31 +0200 <haskellbridge> <C​hristina Sørensen> Hey, when using `XMonad.actions.search`, how do I do something like this `noogle = S.searchEngine "noogle" "https://noogle.dev/?term=%22query%22"`, where `query` is the place I'd like my search query to go.
2023-09-27 15:54:18 +0200 <haskellbridge> <g​alactic_starfish> Not 100% certain, but I believe you'd have to peel back S.searchEngine because it only provides an append schema, not an insert one
2023-09-27 15:57:18 +0200 <haskellbridge> <C​hristina Sørensen> Hmm, I see
2023-09-27 15:58:05 +0200 <haskellbridge> <g​alactic_starfish> Using hoogle you could get to the source and likely concoct a solution using the existing code but tweaked
2023-09-27 15:59:57 +0200 <haskellbridge> <C​hristina Sørensen> it does actually mention noogle https://github.com/xmonad/xmonad-contrib/blob/7bb1f0b8876b94f3690776dee073cc78943e2262/XMonad/Acti…
2023-09-27 16:03:53 +0200 <[Leary]> Christina: `S.searchEngineF "noogle" $ \query -> "https://noogle.dev/?term=%22" <> query <> "%22"`
2023-09-27 16:05:47 +0200 <haskellbridge> <C​hristina Sørensen> Do you guys take PRs for search engines, I notice search.nixos.org and the one for home manager aren't present
2023-09-27 16:07:35 +0200 <geekosaur> yes, we do
2023-09-27 16:10:37 +0200 <haskellbridge> <C​hristina Sørensen> \>_>
2023-09-27 16:10:54 +0200 <haskellbridge> <C​hristina Sørensen> I'll try to do add those then!
2023-09-27 16:25:39 +0200 <xmonadtrack> New xmonad-contrib branch created: pull/832 (2 commits) https://github.com/xmonad/xmonad-contrib/pull/832
2023-09-27 16:26:33 +0200 <haskellbridge> <C​hristina Sørensen> Would you want me to add this to `CHANGES.md`, and if so, should I do that as separate commits, or in the commits for each search engine? (wondering if it's too small)
2023-09-27 16:34:41 +0200 <geekosaur> Just a one-liner covering both is fine.
2023-09-27 16:36:23 +0200 <geekosaur> You have a syntax error according to the workflow https://github.com/xmonad/xmonad-contrib/pull/832/files#diff-5dac5a6eddffb93a5d54ed1499b273fff623c…
2023-09-27 16:36:32 +0200 <geekosaur> home-manager instead of homeManager
2023-09-27 16:54:19 +0200 <haskellbridge> <C​hristina Sørensen> Okay thanks, I fixed it, should be ready for review. Only thing is I haven't run `stack test` locally because nix seems to be missing ghc947, does CI run it?
2023-09-27 16:59:33 +0200 <geekosaur> We have 9.4.5 (probably should update at some point)
2023-09-27 16:59:45 +0200 <geekosaur> I approved the workflow so you can see the list in the ticket
2023-09-27 17:05:58 +0200 <haskellbridge> <C​hristina Sørensen> awesome, thanks for the help! (seems like it just merged)
2023-09-27 17:06:20 +0200 <xmonadtrack> xmonad-contrib Christina Sørensen {GitHub} * v0.17.1-183-ga379850f: XMonad.actions.search: Add NixOS and home-manager searchEngines (#832) (69 seconds ago, 2 files, 15+ 7-) https://github.com/xmonad/xmonad-contrib/commit/a379850f5035
2023-09-27 17:08:12 +0200chomwitt(~chomwitt@2a02:587:7a24:b000:1ac0:4dff:fedb:a3f1) (Remote host closed the connection)
2023-09-27 17:45:01 +0200cfricke(~cfricke@user/cfricke) (Quit: WeeChat 4.0.4)
2023-09-27 19:13:44 +0200chomwitt(~chomwitt@2a02:587:7a24:b000:1ac0:4dff:fedb:a3f1)
2023-09-27 20:10:14 +0200mc47(~mc47@xmonad/TheMC47) (Remote host closed the connection)
2023-09-27 20:41:53 +0200Guest74(~Guest74@77.91.103.173)
2023-09-27 20:43:24 +0200Guest74(~Guest74@77.91.103.173) (Client Quit)
2023-09-27 21:23:34 +0200horzion(~horzion@ProtonDB/horzion)
2023-09-27 21:39:31 +0200todi(~todi@p4fd1a856.dip0.t-ipconnect.de)
2023-09-27 22:29:39 +0200Guest26(~Guest26@45.58.157.137)
2023-09-27 22:37:04 +0200Guest26(~Guest26@45.58.157.137) (Quit: Client closed)
2023-09-27 23:54:12 +0200subbs(~subbs@185.236.16.37)
2023-09-27 23:56:56 +0200vanvik(~vanvik@78.156.11.181) (Ping timeout: 244 seconds)