2021/07/16

2021-07-16 00:16:43 +0200seschwar(~seschwar@user/seschwar) (Quit: :wq)
2021-07-16 01:32:00 +0200crzjp(~user@177.128.197.157)
2021-07-16 01:36:26 +0200 <crzjp> Help, I'm starting on xmonad and edited this config https://paste.rs/vOn but when trying to recompile I get this error https://paste.rs/Dpq , I have no ideia how to fix this
2021-07-16 01:36:46 +0200 <crzjp> I'm very noob on haskell, sorry
2021-07-16 01:48:25 +0200 <fizzie> You probably didn't mean `tile` there in your myLayout.
2021-07-16 01:49:04 +0200 <fizzie> In the context, that's a function (XMonad.Layout.tile), not a layout.
2021-07-16 01:49:26 +0200 <fizzie> If you meant the default XMonad tiling layout, that's called `Tall` instead of `tile`.
2021-07-16 01:53:58 +0200 <crzjp> fizzie: I get same or similar error https://paste.rs/3jt
2021-07-16 01:59:11 +0200 <fizzie> Oh, right, I forgot about the Tall constructor also taking some parameters. (Been a while since I've used it.)
2021-07-16 02:00:30 +0200 <fizzie> The default would actually be something like `Tall 1 (1/2) (3/100)`.
2021-07-16 02:02:25 +0200 <fizzie> The parameters being the initial number of master windows, the fraction of the screen used for the master pane, and the fraction of screen to use when resizing. From here, which also shows a way to use variables for those: https://hackage.haskell.org/package/xmonad-0.15/docs/src/XMonad.Config.html#layout
2021-07-16 02:03:56 +0200 <crzjp> fizzie: in these form for example? myLayout = smartBorders (Full ||| Tall 1 (1/2) (3/100)
2021-07-16 02:11:34 +0200 <fizzie> Well, one more ) in there, but sounds plausible.
2021-07-16 02:13:09 +0200crzjp(~user@177.128.197.157) (Remote host closed the connection)
2021-07-16 02:16:05 +0200crzjp(~user@177.128.197.157)
2021-07-16 02:16:35 +0200 <crzjp> fizzie: It worked, thank you so much
2021-07-16 02:40:00 +0200 <geekosaur> I think they got `tile` from an example which defined it in a where clause in terms of Tall
2021-07-16 02:44:18 +0200 <crzjp> geekosaur: this, tho I forgot where I got
2021-07-16 02:58:36 +0200crzjp(~user@177.128.197.157) (ERC (IRC client for Emacs 27.2))
2021-07-16 04:02:53 +0200banc(banc@gateway/vpn/airvpn/banc) (Ping timeout: 258 seconds)
2021-07-16 04:16:28 +0200td_(~td@94.134.91.92) (Ping timeout: 252 seconds)
2021-07-16 04:18:13 +0200td_(~td@94.134.91.148)
2021-07-16 04:23:09 +0200tpefreedom(~tsomers@98-125-194-4.dyn.centurytel.net)
2021-07-16 04:23:13 +0200banc(banc@gateway/vpn/airvpn/banc)
2021-07-16 05:17:42 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Ping timeout: 265 seconds)
2021-07-16 05:18:23 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 05:50:42 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Ping timeout: 252 seconds)
2021-07-16 05:51:54 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 05:54:04 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2021-07-16 05:54:06 +0200allbery_b(~geekosaur@xmonad/geekosaur)
2021-07-16 06:00:25 +0200tpefreedom(~tsomers@98-125-194-4.dyn.centurytel.net) (Quit: Leaving)
2021-07-16 08:20:05 +0200qbt(~edun@user/edun)
2021-07-16 08:26:12 +0200kr1x(~kriket@170.249.0.122)
2021-07-16 08:30:30 +0200kr1x(~kriket@170.249.0.122) (Client Quit)
2021-07-16 08:30:46 +0200kr1x(~kriket@170.249.0.122)
2021-07-16 09:53:26 +0200ElKowar54(~ElKowar@srv-fin.xware-gmbh.de)
2021-07-16 09:53:26 +0200deepy(deepy@user/deepy) (Read error: Connection reset by peer)
2021-07-16 09:54:24 +0200deepy(deepy@user/deepy)
2021-07-16 09:54:32 +0200ElKowar5(~ElKowar@srv-fin.xware-gmbh.de) (Read error: Connection reset by peer)
2021-07-16 10:18:36 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 10:20:06 +0200allbery_b(~geekosaur@xmonad/geekosaur) (Ping timeout: 255 seconds)
2021-07-16 10:25:44 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2021-07-16 10:29:07 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 12:12:24 +0200 <qbt> hi i was considering contributing to xmonad-contrib issue #160 about layout docs, and i guess i will have a couple of questions as i work on it
2021-07-16 12:12:41 +0200 <qbt> i actually use the Accordion layout combined with Tall in a layout group, which i find to be a very effective combination
2021-07-16 12:13:13 +0200 <qbt> would this be an ok screenshot to add to represent Accordion.hs though? since it features other layouts as well.
2021-07-16 13:40:13 +0200 <Solid> qbt: as long as it features the accordion layout I don't think that would be a problem
2021-07-16 13:40:26 +0200 <Solid> indeed, I think "more involved" screenshots can sometimes show features much better
2021-07-16 13:40:48 +0200 <Solid> you should probably just link to everything that is being showcased
2021-07-16 14:11:41 +0200 <qbt> Solid: yeah I agree! esp layouts like accordion I find quite difficult to use on its own
2021-07-16 15:13:35 +0200Nahra`(~user@static.161.95.99.88.clients.your-server.de)
2021-07-16 15:13:37 +0200SpiderPi1(~matt@047-132-233-190.res.spectrum.com)
2021-07-16 15:13:50 +0200electr0n_(~electr0n@hunt.revrse.sh)
2021-07-16 15:15:05 +0200piele_(~piele@tbonesteak.creativeserver.net)
2021-07-16 15:15:17 +0200terrorjack2(~terrorjac@ec2-54-95-39-30.ap-northeast-1.compute.amazonaws.com)
2021-07-16 15:15:51 +0200edun(~edun@user/edun)
2021-07-16 15:18:49 +0200qbt(~edun@user/edun) (*.net *.split)
2021-07-16 15:18:50 +0200SpiderPig(~matt@047-132-233-190.res.spectrum.com) (*.net *.split)
2021-07-16 15:18:50 +0200piele(~piele@tbonesteak.creativeserver.net) (*.net *.split)
2021-07-16 15:18:51 +0200terrorjack(~terrorjac@ec2-54-95-39-30.ap-northeast-1.compute.amazonaws.com) (*.net *.split)
2021-07-16 15:18:51 +0200electr0n(~electr0n@hunt.revrse.sh) (*.net *.split)
2021-07-16 15:18:51 +0200L29Ah(~L29Ah@user/l29ah) (*.net *.split)
2021-07-16 15:18:52 +0200Nahra(~user@static.161.95.99.88.clients.your-server.de) (*.net *.split)
2021-07-16 15:18:52 +0200terrorjack2terrorjack
2021-07-16 15:18:52 +0200edunqbt
2021-07-16 15:58:41 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Remote host closed the connection)
2021-07-16 15:59:04 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 16:41:34 +0200geekosaur(~geekosaur@xmonad/geekosaur) (Killed (NickServ (GHOST command used by allbery_b)))
2021-07-16 16:41:36 +0200geekosaur(~geekosaur@xmonad/geekosaur)
2021-07-16 19:17:12 +0200qbt(~edun@user/edun) (Ping timeout: 245 seconds)
2021-07-16 20:05:31 +0200seschwar(~seschwar@user/seschwar)
2021-07-16 21:36:46 +0200 <aplainzetakind> geekosaur: I can't figure out how to involve a Setup.hs in order to make `cabal install --lib --package-env=xmonad` make sense. Is there an example/how-to somewhere?
2021-07-16 21:45:29 +0200 <geekosaur> afaik you don't. you do the cabal install --lib stuff outside of xmonad, then use a build script which does more or less: ghc -o "$1" xmonad.hs -i -ilib -fforce-recomp -v0 -package-env xmonad
2021-07-16 21:45:53 +0200 <geekosaur> (note single dash on -package-env, for ghc)
2021-07-16 21:50:32 +0200 <aplainzetakind> Here: https://github.com/xmonad/xmonad/issues/199 hvr's comment suggests `cabal install -z --lib --package-env=$HOME/.xmonad/ xmonad xmonad-contrib`. Is there a downside to this?
2021-07-16 21:51:37 +0200 <geekosaur> not particularly, it's just slightly more elaborated
2021-07-16 21:53:18 +0200 <aplainzetakind> Alright. Thanks.
2021-07-16 23:12:13 +0200ft(~ft@shell.chaostreff-dortmund.de) (Remote host closed the connection)
2021-07-16 23:27:52 +0200ft(~ft@shell.chaostreff-dortmund.de)
2021-07-16 23:39:37 +0200benin0369(~benin@183.82.204.139)