Home liberachat/#xmonad: Logs Calendar

Logs: liberachat/#xmonad

←Prev  Next→
Page 1 .. 699 700 701 702 703 704 705 706 707 708 709 .. 1850
184,942 events total
2022-06-24 16:51:53 <geekosaur> don't see an expense filed by Solid
2022-06-24 17:11:02 <liskin> mc47: I got my tickets using the SBB app (EasyRide) and the receipts came via e-mail the next day
2022-06-24 17:11:08 <liskin> From: SBB CFF FFS <sbb.feedback@fairtiq.com>
2022-06-24 17:11:12 <liskin> Subject: EasyRide purchase receipt – Jun 11, 2022
2022-06-24 17:11:14 <liskin> like this
2022-06-24 17:11:53 <liskin> (I took all those pdfs then and pdftk'd them into one and expensed as one item)
2022-06-24 17:19:40 jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)
2022-06-24 17:58:10 werneta joins (~werneta@137.78.30.207)
2022-06-24 18:51:40 <mc47> alright, thansk
2022-06-24 18:56:22 <geekosaur> and approved
2022-06-24 19:00:18 kavothe joins (~kavothe@2405:201:e020:b03d:3af1:92a8:e530:b923)
2022-06-24 19:04:10 <liskin> tfw mc47's entire travel was as expensive as me getting to Heathrow on a cheap bus
2022-06-24 19:22:18 × td_ quits (~td@muedsl-82-207-238-027.citykom.de) (Ping timeout: 264 seconds)
2022-06-24 19:22:46 <mc47> hahahah
2022-06-24 19:22:49 <mc47> thanks geekosaur!
2022-06-24 19:23:47 td_ joins (~td@94.134.91.109)
2022-06-24 19:54:38 × alternateved quits (~alternate@staticline-31-183-144-54.toya.net.pl) (Ping timeout: 246 seconds)
2022-06-24 20:15:02 suconakh52 joins (~suconakh@94.25.174.66)
2022-06-24 20:18:26 suconakh44 joins (~suconakh@94.25.174.66)
2022-06-24 20:19:26 suconakh44 is now known as suconakh
2022-06-24 20:24:13 × suconakh52 quits (~suconakh@94.25.174.66) (Quit: Client closed)
2022-06-24 20:37:15 × kavothe quits (~kavothe@2405:201:e020:b03d:3af1:92a8:e530:b923) (Quit: WeeChat 3.5)
2022-06-24 20:46:00 × VeronicaLova[m] quits (~brainzint@2001:470:69fc:105::2:1ed2) (*.net *.split)
2022-06-24 20:46:00 × gdd1 quits (~gdd@2001:470:1f13:187:7f5b:6c09:f7ed:fdf0) (*.net *.split)
2022-06-24 20:46:00 × rarufu[m] quits (~rarufumat@2001:470:69fc:105::9589) (*.net *.split)
2022-06-24 20:46:00 × ghormoon quits (~ghormoon@ghorland.net) (*.net *.split)
2022-06-24 20:46:01 × woobilicious quits (~woobilici@2001:470:69fc:105::1:4605) (*.net *.split)
2022-06-24 20:46:01 × berberman quits (~berberman@user/berberman) (*.net *.split)
2022-06-24 20:46:01 × MrElendig quits (~Urist@archlinux/op/MrElendig) (*.net *.split)
2022-06-24 20:46:01 × Solitary quits (~Solitary@user/solitary) (*.net *.split)
2022-06-24 20:47:11 ghormoon joins (~ghormoon@ghorland.net)
2022-06-24 20:47:26 gdd1 joins (~gdd@129.199.146.230)
2022-06-24 20:47:27 berberman joins (~berberman@user/berberman)
2022-06-24 20:47:53 Solitary joins (~Solitary@user/solitary)
2022-06-24 20:48:31 × mc47 quits (~mc47@xmonad/TheMC47) (Remote host closed the connection)
2022-06-24 20:54:54 diep joins (~diep@2a01:cb11:2d7:4a00:4202:8c7d:a3d3:256f)
2022-06-24 20:58:29 <diep> Hi, Im trying to switch to EZConfig, for keybind I use `additionalKeysP`, how Im supposed to replace this `spawn $ XMonad.terminal conf` correctly? I mean without to write the hardcoded name of my terminal in place of XMonad.terminal. Because when I try to compile I get an error.
2022-06-24 20:59:59 <geekosaur> you need to split out your config and give it a name so you can refer to it, or bind the name of your terminal separately (`myTerminal` is common) so you can name that
2022-06-24 21:00:00 MrElendig joins (~Urist@archlinux/op/MrElendig)
2022-06-24 21:00:54 <suconakh> what i did in my config is just define TERMINAL environment variable in a shell profile and then `spawn "$TERMINAL"` in xmonad
2022-06-24 21:01:13 <geekosaur> normally that entry doesn't get rebound or moved around, and there's no good way to provide for it, just as `additionalKeys` can't get at your config to use `modMask`, `additionalKeysP` can't get at it for this
2022-06-24 21:02:33 <geekosaur> there's also something like: asks (terminal . config) >>= spawn
2022-06-24 21:02:43 woobilicious joins (~woobilici@2001:470:69fc:105::1:4605)
2022-06-24 21:04:00 VeronicaLova[m] joins (~brainzint@2001:470:69fc:105::2:1ed2)
2022-06-24 21:04:02 <geekosaur> (doublechecking that but it'll take a bit for everything to rebuild since I pulled some updates earlier today and the ghci-libs all need to rebuild…)
2022-06-24 21:06:27 rarufu[m] joins (~rarufumat@2001:470:69fc:105::9589)
2022-06-24 21:08:56 <diep> ok I chosen to declare myTerminal variable, thx
2022-06-24 21:30:30 <geekosaur> okay, the "asks …" solution would also work and doesn't require an extra declaration
2022-06-24 21:33:42 × xacktm quits (xacktm@user/xacktm) (Quit: fBNC - https://bnc4free.com)
2022-06-24 21:41:52 <diep> ok good to know
2022-06-24 21:57:38 × diep quits (~diep@2a01:cb11:2d7:4a00:4202:8c7d:a3d3:256f) (Remote host closed the connection)
2022-06-24 22:02:23 × werneta quits (~werneta@137.78.30.207) (Ping timeout: 246 seconds)
2022-06-24 22:03:56 xacktm joins (xacktm@user/xacktm)
2022-06-24 22:12:04 × suconakh quits (~suconakh@94.25.174.66) (Quit: Client closed)
2022-06-24 22:20:29 suconakh joins (~suconakh@94.25.174.66)
2022-06-24 22:29:32 stackdroid18 joins (14094@user/stackdroid)
2022-06-24 22:54:56 × bla quits (~bla@79.191.70.169.ipv4.supernova.orange.pl) (Ping timeout: 255 seconds)
2022-06-24 22:55:19 blaa joins (~bla@79.191.36.250.ipv4.supernova.orange.pl)
2022-06-24 23:28:33 diep joins (~diep@2a01:cb11:2d7:4a00:c907:c9ed:6edf:755b)
2022-06-24 23:31:30 <diep> Hi again, now that I use EZConfig, Im trygin to add navigation2D keybinds using `additionalNav2DKeys` but without success. This is what I tested so far -> https://pastebin.com/Q7tPayAR Im not sure what I do wrong. Someone can help me please?
2022-06-24 23:35:20 × chomwitt quits (~chomwitt@2a02:587:dc0d:e600:8f05:e6fa:1178:1d79) (Ping timeout: 272 seconds)
2022-06-24 23:39:00 <geekosaur> (1) you wanted `additionalNav2DKeysP` (2) it doesn't work that way
2022-06-24 23:41:04 <geekosaur> you should also usually include the actual compile error instead of making people guess, but I think that's a type error
2022-06-24 23:43:00 <geekosaur> https://paste.tomsmeding.com/Pco3GlaN
2022-06-24 23:43:05 werneta joins (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net)
2022-06-24 23:43:49 <geekosaur> sorry, https://paste.tomsmeding.com/TRsQq3AX
2022-06-24 23:45:42 <diep> yes sorry for the compile error, and thx for your snippet!
2022-06-24 23:47:28 <diep> I thought that I could use `additionalNav2DKeys` like `additionalKeysP`, but the signatures are different
2022-06-24 23:48:01 <geekosaur> right, additionalNav2DKeys and additionalNav2DKeysP take too many parameters for that form to work
2022-06-24 23:48:51 <geekosaur> and since you're using "M-" and "M-S-", you need the …P version
2022-06-24 23:49:00 <diep> yup
2022-06-24 23:58:46 × xacktm quits (xacktm@user/xacktm) (Ping timeout: 272 seconds)
2022-06-25 00:09:02 × diep quits (~diep@2a01:cb11:2d7:4a00:c907:c9ed:6edf:755b) (Quit: diep)
2022-06-25 00:23:07 xacktm joins (xacktm@user/xacktm)
2022-06-25 00:41:21 bla joins (~bla@79.191.253.107.ipv4.supernova.orange.pl)
2022-06-25 00:41:38 × blaa quits (~bla@79.191.36.250.ipv4.supernova.orange.pl) (Ping timeout: 246 seconds)
2022-06-25 00:54:32 × stackdroid18 quits (14094@user/stackdroid) (Quit: hasta la vista... tchau!)
2022-06-25 00:58:35 × xacktm quits (xacktm@user/xacktm) (Ping timeout: 268 seconds)
2022-06-25 01:18:48 xacktm joins (xacktm@user/xacktm)
2022-06-25 01:54:46 × suconakh quits (~suconakh@94.25.174.66) (Quit: Client closed)
2022-06-25 02:03:57 × banc quits (banc@gateway/vpn/airvpn/banc) (Ping timeout: 268 seconds)
2022-06-25 02:23:04 banc joins (banc@gateway/vpn/airvpn/banc)
2022-06-25 02:46:36 × td_ quits (~td@94.134.91.109) (Ping timeout: 272 seconds)
2022-06-25 02:48:10 td_ joins (~td@muedsl-82-207-238-209.citykom.de)
2022-06-25 03:00:01 × haasn quits (~nand@haasn.dev) (Quit: ZNC 1.7.5+deb4 - https://znc.in)
2022-06-25 03:00:56 × jao quits (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net) (Ping timeout: 246 seconds)
2022-06-25 03:01:24 haasn joins (~nand@haasn.dev)
2022-06-25 03:50:26 steve__ joins (~steve@ool-182c2b80.dyn.optonline.net)
2022-06-25 04:35:26 × steve__ quits (~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 246 seconds)
2022-06-25 05:46:33 rekahsoft joins (~rekahsoft@bras-base-wdston4533w-grc-02-142-113-160-8.dsl.bell.ca)
2022-06-25 05:57:08 chomwitt joins (~chomwitt@2a02:587:dc0d:e600:e74a:b005:c722:73f7)
2022-06-25 06:11:14 × chomwitt quits (~chomwitt@2a02:587:dc0d:e600:e74a:b005:c722:73f7) (Ping timeout: 268 seconds)
2022-06-25 06:27:47 × rekahsoft quits (~rekahsoft@bras-base-wdston4533w-grc-02-142-113-160-8.dsl.bell.ca) (Ping timeout: 246 seconds)
2022-06-25 06:34:22 <Solid> mc47[m]: I'll probably file an invoice instead but I think I also got the receipts via email (though I also booked on the website)
2022-06-25 06:36:50 × werneta quits (~werneta@70-142-214-115.lightspeed.irvnca.sbcglobal.net) (Ping timeout: 240 seconds)
2022-06-25 08:02:49 steve__ joins (~steve@ool-182c2b80.dyn.optonline.net)
2022-06-25 08:20:02 chomwitt joins (~chomwitt@2a02:587:dc0d:e600:59fa:73d0:5de3:cb11)
2022-06-25 10:35:21 alternateved joins (~alternate@82.180.151.122)
2022-06-25 12:23:11 × alternateved quits (~alternate@82.180.151.122) (Ping timeout: 255 seconds)
2022-06-25 13:32:32 jao joins (~jao@cpc103048-sgyl39-2-0-cust502.18-2.cable.virginm.net)

All times are in UTC.