Logs: freenode/#xmonad
| 2021-01-07 13:46:42 | × | alourie quits (31bcffba@49.188.255.186) (Remote host closed the connection) |
| 2021-01-07 13:46:42 | <Liskni_si> | you don't need that I think |
| 2021-01-07 13:46:55 | <Liskni_si> | X.Core compiles fine with deriving Functor, Foldable, Traversable |
| 2021-01-07 13:47:11 | <Solid> | Oh right Traversable doesn't have an Applicative, but a Functor constraint |
| 2021-01-07 13:47:13 | <Liskni_si> | and there's a PR that adds that for another data type that we might want to merge :-) |
| 2021-01-07 13:47:15 | <Solid> | yay |
| 2021-01-07 13:47:31 | <Liskni_si> | (although the custom impl is useful in the case of that PR) |
| 2021-01-07 13:47:35 | <Liskni_si> | brb lunch |
| 2021-01-07 14:08:32 | → | cfricke joins (~cfricke@unaffiliated/cfricke) |
| 2021-01-07 14:09:34 | × | s00pcan quits (~chris@075-133-056-178.res.spectrum.com) (Remote host closed the connection) |
| 2021-01-07 14:09:55 | → | ADG1089__ joins (~aditya@171.79.107.193) |
| 2021-01-07 14:22:29 | × | geekosaur quits (ac3a8b34@172.58.139.52) (Remote host closed the connection) |
| 2021-01-07 15:11:45 | × | ADG1089__ quits (~aditya@171.79.107.193) (Remote host closed the connection) |
| 2021-01-07 15:30:26 | → | malook joins (~Thunderbi@37.241.28.129) |
| 2021-01-07 16:02:43 | → | al3x27 joins (~plovs@85.254.74.197) |
| 2021-01-07 16:10:45 | ← | malook parts (~Thunderbi@37.241.28.129) () |
| 2021-01-07 16:32:57 | → | seschwar joins (~seschwar@unaffiliated/seschwar) |
| 2021-01-07 16:47:38 | → | ADG1089__ joins (~aditya@171.79.107.193) |
| 2021-01-07 16:55:07 | → | geekosaur joins (42d52137@66.213.33.55) |
| 2021-01-07 17:07:36 | × | cfricke quits (~cfricke@unaffiliated/cfricke) (Quit: WeeChat 3.0) |
| 2021-01-07 17:08:03 | × | hexo quits (~hexo@gateway/tor-sasl/hexo) (Ping timeout: 240 seconds) |
| 2021-01-07 17:08:26 | → | hexo joins (~hexo@gateway/tor-sasl/hexo) |
| 2021-01-07 17:35:26 | → | everythingTaken joins (~everythin@gateway/tor-sasl/everythingtaken) |
| 2021-01-07 17:44:29 | × | everythingTaken quits (~everythin@gateway/tor-sasl/everythingtaken) (Quit: everythingTaken) |
| 2021-01-07 17:50:05 | → | growpotkin joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-01-07 17:57:08 | → | s00pcan joins (~chris@075-133-056-178.res.spectrum.com) |
| 2021-01-07 18:07:15 | × | ADG1089__ quits (~aditya@171.79.107.193) (Quit: Konversation terminated!) |
| 2021-01-07 18:18:46 | × | rudentoxic quits (~rudentoxi@104.244.208.232) (Ping timeout: 256 seconds) |
| 2021-01-07 18:20:17 | → | rudentoxic joins (~rudentoxi@107-214-50-180.lightspeed.bcvloh.sbcglobal.net) |
| 2021-01-07 18:22:51 | → | dariof4 joins (~dario@178.249.206.163) |
| 2021-01-07 18:34:29 | → | aldum_ joins (~vishera@catv-176-63-107-31.catv.broadband.hu) |
| 2021-01-07 18:34:44 | × | aldum quits (~vishera@aldum.pw) (Quit: leaving) |
| 2021-01-07 18:38:23 | aldum_ | is now known as aldum|arbiter |
| 2021-01-07 18:38:50 | × | geekosaur quits (42d52137@66.213.33.55) (Ping timeout: 245 seconds) |
| 2021-01-07 18:40:21 | → | aldum joins (~vishera@aldum.pw) |
| 2021-01-07 18:40:37 | × | aldum|arbiter quits (~vishera@catv-176-63-107-31.catv.broadband.hu) (Quit: leaving) |
| 2021-01-07 18:43:44 | → | nomeata joins (~jojo@dslb-084-056-082-238.084.056.pools.vodafone-ip.de) |
| 2021-01-07 18:55:08 | → | geekosaur joins (42d52137@66.213.33.55) |
| 2021-01-07 18:58:59 | × | abhixec quits (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) (Remote host closed the connection) |
| 2021-01-07 19:03:28 | → | berberman_ joins (~berberman@unaffiliated/berberman) |
| 2021-01-07 19:03:58 | × | berberman quits (~berberman@unaffiliated/berberman) (Ping timeout: 260 seconds) |
| 2021-01-07 19:10:09 | → | abhixec joins (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) |
| 2021-01-07 19:10:23 | <al3x27> | How do I get [1,2,3...8,9,0]? "foo | (key,i) <- zip [1..9] ++ [0] (XMonad.workspaces conf)" |
| 2021-01-07 19:11:44 | <geekosaur> | there's no shorthand for that because that's not how numbers are normally enumerated |
| 2021-01-07 19:12:19 | <fizzie> | [1..9] ++ [0] is probably fair enough, it just likely needs some ()s around it. |
| 2021-01-07 19:13:57 | <al3x27> | fizzie: don't know if i should be happy or embarred that that works, gracias! |
| 2021-01-07 19:15:23 | <al3x27> | Anybody use DynamicProjects, how can |
| 2021-01-07 19:16:11 | <al3x27> | I use projectName and projectDirectory in my own code? |
| 2021-01-07 19:39:55 | × | nomeata quits (~jojo@dslb-084-056-082-238.084.056.pools.vodafone-ip.de) (Quit: Client exiting) |
| 2021-01-07 20:12:35 | × | geekosaur quits (42d52137@66.213.33.55) (Ping timeout: 245 seconds) |
| 2021-01-07 20:23:06 | → | geekosaur joins (42d52137@66.213.33.55) |
| 2021-01-07 20:57:49 | × | notis quits (~notis@45.134.22.54) (Ping timeout: 264 seconds) |
| 2021-01-07 20:59:17 | → | notis joins (~notis@185.51.134.230) |
| 2021-01-07 21:20:11 | ← | stalactite[m] parts (stalactite@gateway/shell/matrix.org/x-hmsdktjbvicqrdgd) ("User left") |
| 2021-01-07 21:22:43 | × | rudentoxic quits (~rudentoxi@107-214-50-180.lightspeed.bcvloh.sbcglobal.net) (Ping timeout: 246 seconds) |
| 2021-01-07 21:22:58 | → | rudentoxic joins (~rudentoxi@184.170.250.150) |
| 2021-01-07 21:40:27 | → | felko joins (5cb87cf7@pop.92-184-124-247.mobile.abo.orange.fr) |
| 2021-01-07 21:42:32 | × | geekosaur quits (42d52137@66.213.33.55) (Remote host closed the connection) |
| 2021-01-07 21:47:35 | × | notis quits (~notis@185.51.134.230) (Quit: WeeChat 3.0) |
| 2021-01-07 21:48:40 | → | notis joins (~notis@185.51.134.230) |
| 2021-01-07 22:43:51 | <rudentoxic> | how would I go about putting a window on all tags, on one monitor alone, as a floater? ex: a chat window I want open in the corner of one monitor, no matter which tag I switch to? |
| 2021-01-07 23:15:55 | × | felko quits (5cb87cf7@pop.92-184-124-247.mobile.abo.orange.fr) (Ping timeout: 245 seconds) |
| 2021-01-07 23:34:39 | × | xaltsc quits (~xaltsc@unaffiliated/xaltsc) (Quit: WeeChat 3.0) |
| 2021-01-07 23:51:24 | × | seschwar quits (~seschwar@unaffiliated/seschwar) (Quit: :wq) |
| 2021-01-07 23:55:35 | × | mc47 quits (~yecinem@89.246.239.190) (Remote host closed the connection) |
| 2021-01-07 23:59:17 | × | thc202 quits (~thc202@unaffiliated/thc202) (Quit: thc202) |
| 2021-01-08 00:18:05 | × | notis quits (~notis@185.51.134.230) (Ping timeout: 240 seconds) |
| 2021-01-08 00:20:14 | × | abhixec quits (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) (Quit: leaving) |
| 2021-01-08 00:36:19 | → | abhixec joins (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) |
| 2021-01-08 00:42:53 | × | growpotkin quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2021-01-08 00:43:11 | → | growpotkin joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-01-08 01:05:40 | × | al3x27 quits (~plovs@85.254.74.197) (Quit: WeeChat 3.0) |
| 2021-01-08 01:20:37 | × | rudentoxic quits (~rudentoxi@184.170.250.150) (Ping timeout: 264 seconds) |
| 2021-01-08 01:22:18 | → | rudentoxic joins (~rudentoxi@107-214-50-180.lightspeed.bcvloh.sbcglobal.net) |
| 2021-01-08 01:29:12 | × | thunderrd quits (~thunderrd@183.182.115.136) (Remote host closed the connection) |
| 2021-01-08 01:34:58 | → | materiyolo joins (~materiyol@112.204.170.198) |
| 2021-01-08 02:30:51 | × | dariof4 quits (~dario@178.249.206.163) (Quit: WeeChat 3.0) |
| 2021-01-08 02:37:18 | <rudentoxic> | does anybody use BSP? |
| 2021-01-08 02:40:54 | <coldpress> | rudentoxic: yeah I do |
| 2021-01-08 02:41:12 | <fizzie> | _o/ |
| 2021-01-08 02:42:03 | <fizzie> | layouts = (borderResize . smartBorders . avoidStruts $ emptyBSP) ||| noBorders Full -- not guaranteed to make sense, just what I ended up with |
| 2021-01-08 02:43:25 | × | sszark quits (~sszark@h-213-180.A392.priv.bahnhof.se) (Ping timeout: 264 seconds) |
| 2021-01-08 03:17:56 | <rudentoxic> | coldpress: I figured out a workaround. I like to have one main left vertical pane, but sometimes master takes the horizontal. I just float it, move it, and unfloat it to fix that. I didn't see anything in the documentation mentioning actually rearranging the layout to be horizontal-centric vs vertical-centric per the master. |
| 2021-01-08 03:22:28 | <coldpress> | main left vertical pane in BSP? isn't main left vertical pane the Tall layout? |
| 2021-01-08 03:22:46 | <coldpress> | rudentoxic: |
| 2021-01-08 03:25:44 | × | materiyolo quits (~materiyol@112.204.170.198) (Ping timeout: 272 seconds) |
| 2021-01-08 03:27:24 | → | xaltsc joins (~xaltsc@unaffiliated/xaltsc) |
| 2021-01-08 03:28:05 | × | xaltsc quits (~xaltsc@unaffiliated/xaltsc) (Client Quit) |
| 2021-01-08 03:28:21 | → | xaltsc joins (~xaltsc@unaffiliated/xaltsc) |
| 2021-01-08 03:51:42 | × | theDon quits (~td@muedsl-82-207-238-201.citykom.de) (Ping timeout: 272 seconds) |
| 2021-01-08 03:52:50 | → | theDon joins (~td@muedsl-82-207-238-128.citykom.de) |
| 2021-01-08 04:13:35 | → | coldpress_ joins (~coldpress@128.9.105.34.bc.googleusercontent.com) |
| 2021-01-08 04:16:36 | × | coldpress quits (~coldpress@128.9.105.34.bc.googleusercontent.com) (Ping timeout: 240 seconds) |
| 2021-01-08 04:25:42 | → | thunderrd joins (~thunderrd@183.182.115.136) |
| 2021-01-08 04:25:59 | × | thunderrd quits (~thunderrd@183.182.115.136) (Remote host closed the connection) |
| 2021-01-08 04:27:41 | → | thunderrd joins (~thunderrd@183.182.115.136) |
| 2021-01-08 04:27:58 | × | thunderrd quits (~thunderrd@183.182.115.136) (Remote host closed the connection) |
| 2021-01-08 04:49:32 | → | thunderrd joins (~thunderrd@183.182.115.136) |
| 2021-01-08 05:11:58 | × | ml| quits (~ml|@unaffiliated/ml/x-3958674) (Ping timeout: 256 seconds) |
| 2021-01-08 05:16:03 | × | thunderrd quits (~thunderrd@183.182.115.136) (Remote host closed the connection) |
All times are in UTC.