2023-08-30 04:13:47 +0200 | hightower4 | (~hightower@141-136-175-225.dsl.iskon.hr) |
2023-08-30 04:16:31 +0200 | hightower3 | (~hightower@141-136-157-92.dsl.iskon.hr) (Ping timeout: 258 seconds) |
2023-08-30 04:37:47 +0200 | td_ | (~td@i5387092A.versanet.de) (Ping timeout: 246 seconds) |
2023-08-30 04:39:35 +0200 | td_ | (~td@i53870918.versanet.de) |
2023-08-30 05:44:23 +0200 | gauge | (~gauge@user/gauge) (Read error: Connection reset by peer) |
2023-08-30 05:44:49 +0200 | gauge | (~gauge@user/gauge) |
2023-08-30 06:18:46 +0200 | amenonsen | (~amenonsen@pitta.toroid.org) (Remote host closed the connection) |
2023-08-30 06:19:08 +0200 | amenonsen | (~amenonsen@pitta.toroid.org) |
2023-08-30 06:24:10 +0200 | gauge | (~gauge@user/gauge) (Quit: Quitting) |
2023-08-30 06:24:59 +0200 | gauge | (~gauge@user/gauge) |
2023-08-30 06:26:41 +0200 | gauge | (~gauge@user/gauge) (Read error: Connection reset by peer) |
2023-08-30 06:30:17 +0200 | redgloboli | (~redglobol@user/redgloboli) |
2023-08-30 06:30:39 +0200 | gauge | (~gauge@user/gauge) |
2023-08-30 07:46:14 +0200 | [Leary] | (~Leary]@user/Leary/x-0910699) (Remote host closed the connection) |
2023-08-30 07:46:32 +0200 | [Leary] | (~Leary]@user/Leary/x-0910699) |
2023-08-30 07:57:56 +0200 | td_ | (~td@i53870918.versanet.de) (Quit: waking up from the american dream ...) |
2023-08-30 08:20:09 +0200 | Maeda | (~Maeda@91-161-10-149.subs.proxad.net) (Quit: done!) |
2023-08-30 08:52:55 +0200 | td_ | (~td@i5387090D.versanet.de) |
2023-08-30 09:58:18 +0200 | mc47 | (~mc47@xmonad/TheMC47) |
2023-08-30 10:20:17 +0200 | tv | (~tv@user/tv) (Read error: Connection reset by peer) |
2023-08-30 10:36:12 +0200 | tv | (~tv@user/tv) |
2023-08-30 11:16:14 +0200 | cfricke | (~cfricke@user/cfricke) |
2023-08-30 11:36:03 +0200 | T_X_ | (~T_X@diktynna.open-mesh.org) |
2023-08-30 11:36:29 +0200 | T_X | (~T_X@diktynna.open-mesh.org) (Read error: Connection reset by peer) |
2023-08-30 11:58:35 +0200 | ft | (~ft@p508db658.dip0.t-ipconnect.de) (Quit: leaving) |
2023-08-30 12:06:10 +0200 | cfricke | (~cfricke@user/cfricke) (Ping timeout: 255 seconds) |
2023-08-30 13:36:43 +0200 | cfricke | (~cfricke@user/cfricke) |
2023-08-30 13:37:31 +0200 | tv | (~tv@user/tv) (Ping timeout: 255 seconds) |
2023-08-30 13:52:07 +0200 | tv | (~tv@user/tv) |
2023-08-30 15:16:56 +0200 | thunderrd | (~thunderrd@183.182.114.166) (Remote host closed the connection) |
2023-08-30 16:17:08 +0200 | tv | (~tv@user/tv) (Ping timeout: 246 seconds) |
2023-08-30 16:18:23 +0200 | thyriaen | (~thyriaen@2a01:aea0:dd4:6de3:6245:cbff:fe9f:48b1) |
2023-08-30 16:30:20 +0200 | <thyriaen> | geekosaur, i only really want to have 2 config files for desktop and laptop |
2023-08-30 16:30:35 +0200 | <thyriaen> | and only have some values replaced -- this is something i would do with a preprocessor |
2023-08-30 16:30:47 +0200 | <thyriaen> | is there a more elegant solution how it should be done ? |
2023-08-30 16:31:07 +0200 | tv | (~tv@user/tv) |
2023-08-30 16:38:02 +0200 | thyriaen | (~thyriaen@2a01:aea0:dd4:6de3:6245:cbff:fe9f:48b1) (Quit: Leaving) |
2023-08-30 16:41:04 +0200 | thyriaen | (~thyriaen@2a01:aea0:dd4:6de3:6245:cbff:fe9f:48b1) |
2023-08-30 16:44:52 +0200 | <geekosaur> | the problem with a preprocessor is you will need a build script to tell it what to do |
2023-08-30 16:45:14 +0200 | <geekosaur> | you might look into template haskell instead |
2023-08-30 16:45:48 +0200 | <[Leary]> | I suggest something like `data Host = LaptopHostname | DesktopHostname | Other; main = do { host <- parseHost <$> readProcess "hostname" [] ""; xmonad (buildConfig host) }`. |
2023-08-30 16:46:10 +0200 | <[Leary]> | There's just no need for a preprocessor or template haskell here. Ordinary Haskell will do. |
2023-08-30 16:46:12 +0200 | <geekosaur> | there is alaso that |
2023-08-30 16:52:55 +0200 | <geekosaur> | do remember that your config is a program, you can look things up and change behavior however you wish |
2023-08-30 17:14:05 +0200 | <thyriaen> | [Leary] my mind is blown |
2023-08-30 17:14:27 +0200 | <thyriaen> | however it will be too complicated for me i think |
2023-08-30 17:14:39 +0200 | <geekosaur> | huh? |
2023-08-30 17:15:07 +0200 | <geekosaur> | it's surely better than TH and almost certainly easier than maintaining a buildscript to set defines for a preprocessor |
2023-08-30 17:30:41 +0200 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 4.0.4) |
2023-08-30 17:44:26 +0200 | thyriaen | (~thyriaen@2a01:aea0:dd4:6de3:6245:cbff:fe9f:48b1) (Remote host closed the connection) |
2023-08-30 18:42:11 +0200 | ml| | (~ml|@user/ml/x-5298235) (Ping timeout: 260 seconds) |
2023-08-30 18:56:20 +0200 | ml| | (~ml|@user/ml/x-5298235) |
2023-08-30 19:02:23 +0200 | mc47 | (~mc47@xmonad/TheMC47) (Remote host closed the connection) |
2023-08-30 20:27:00 +0200 | jeeeun8 | (~jeeeun@78.40.148.178) (Quit: The Lounge - https://thelounge.chat) |
2023-08-30 20:30:30 +0200 | jeeeun8 | (~jeeeun@78.40.148.178) |
2023-08-30 21:25:31 +0200 | ft | (~ft@p508db658.dip0.t-ipconnect.de) |
2023-08-30 21:55:33 +0200 | bear34 | (~bear@c-76-131-115-3.hsd1.co.comcast.net) |
2023-08-30 21:57:42 +0200 | <bear34> | hey folks, i'm running into issues when booting into xmonad where things like firefox don't start for up to 30 seconds. journalctl shows an error like this: |
2023-08-30 21:57:44 +0200 | <bear34> | Aug 30 13:38:58 linux xdg-desktop-por[3337]: Failed to create secret proxy: Error calling StartServiceByName for org.freedesktop.secrets: Timeout was reached |
2023-08-30 21:58:14 +0200 | <bear34> | I'm guessing xmonad isn't starting some of the regular sevices that get started if i boot into PopOS, but i cant' for the life of me figure out how to make sure some of these things are started so that stuff "just works" |
2023-08-30 22:10:22 +0200 | <geekosaur> | usually you just need to wrap whatever's starting xmonad for you in dbus-launch |
2023-08-30 22:10:43 +0200 | bear34 | (~bear@c-76-131-115-3.hsd1.co.comcast.net) (Quit: Client closed) |