Logs: freenode/#xmonad
| 2021-04-24 09:17:03 | → | kelnoky joins (~shao@ip1f128ba7.dynamic.kabel-deutschland.de) |
| 2021-04-24 10:13:00 | → | linuxguru joins (~linuxguru@2607:fea8:d660:468e::3) |
| 2021-04-24 10:17:23 | × | kelnoky quits (~shao@ip1f128ba7.dynamic.kabel-deutschland.de) (Quit: WeeChat 3.1) |
| 2021-04-24 11:48:46 | → | mc47 joins (~yecinem@89.246.239.190) |
| 2021-04-24 12:02:22 | → | oogeek joins (~szz_@84.17.34.160) |
| 2021-04-24 12:15:55 | → | geekosaur joins (930099da@rrcs-147-0-153-218.central.biz.rr.com) |
| 2021-04-24 12:23:45 | → | ericsagn1 joins (~ericsagne@2405:6580:0:5100:bd68:2e0:1f11:8b3a) |
| 2021-04-24 12:26:39 | × | ericsagnes quits (~ericsagne@2405:6580:0:5100:e8ce:9fd2:d362:4446) (Ping timeout: 250 seconds) |
| 2021-04-24 12:34:59 | <oogeek> | I have a question: when the layout is toggled by XMonad.Layout.ToggleLayouts, for example, right now the layout is floats and it is toggled, then sendMessage like "nextLayout" does not work. |
| 2021-04-24 12:35:04 | <oogeek> | Is that expected? |
| 2021-04-24 12:35:57 | <oogeek> | Only after the layout is toggled again can I use "sendMessage NextLayout" |
| 2021-04-24 12:37:20 | <oogeek> | And even if the layout is toggled, the layout name is the same in xmobar, which is confusing when someone wants to switch to next layout |
| 2021-04-24 12:40:54 | <oogeek> | I use , ("M-f", sendMessage (T.Toggle "floats")) |
| 2021-04-24 12:56:10 | <geekosaur> | sendMessage forces a relayout so the logHook should be run. nextLayout probably doesn't work in that case because the message is simply forwarded to the inner layout, where there's only one so it does nothing |
| 2021-04-24 12:58:43 | <geekosaur> | that is, if you've toggled to "floats" then the nextLayout message is handled by the "floats" layout. possibly this is wrong, but then the question arises whether we should support the case where the toggle layout is a list |
| 2021-04-24 13:06:27 | → | idhugo joins (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) |
| 2021-04-24 13:22:56 | × | oogeek quits (~szz_@84.17.34.160) (Ping timeout: 268 seconds) |
| 2021-04-24 13:24:28 | → | oogeek joins (~szz_@84.17.34.160) |
| 2021-04-24 13:38:47 | → | ADG1089 joins (~aditya@171.76.29.233) |
| 2021-04-24 13:42:07 | × | oogeek quits (~szz_@84.17.34.160) (Ping timeout: 252 seconds) |
| 2021-04-24 13:43:58 | × | ADG1089 quits (~aditya@171.76.29.233) (Remote host closed the connection) |
| 2021-04-24 13:44:01 | → | oogeek joins (~szz_@45.135.186.41) |
| 2021-04-24 13:47:48 | → | thc202 joins (~thc202@unaffiliated/thc202) |
| 2021-04-24 13:52:38 | × | idhugo quits (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection) |
| 2021-04-24 13:52:56 | → | idhugo joins (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) |
| 2021-04-24 13:53:24 | × | idhugo quits (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection) |
| 2021-04-24 13:53:41 | → | idhugo joins (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) |
| 2021-04-24 13:53:48 | × | idhugo quits (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection) |
| 2021-04-24 13:54:06 | → | idhugo joins (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) |
| 2021-04-24 13:56:06 | × | idhugo quits (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection) |
| 2021-04-24 13:56:24 | → | idhugo joins (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) |
| 2021-04-24 13:56:28 | × | idhugo quits (~idhugo@80-62-116-231-mobile.dk.customer.tdc.net) (Remote host closed the connection) |
| 2021-04-24 14:24:04 | → | kajzer joins (~kajzer@unaffiliated/kajzer) |
| 2021-04-24 14:51:49 | <kajzer> | is there a way to make all floating windows centered when they open ? |
| 2021-04-24 14:52:43 | <MrElendig> | XM.H.P is one way |
| 2021-04-24 14:52:59 | <MrElendig> | (windows can still do evil things and override it though) |
| 2021-04-24 14:53:15 | <MrElendig> | Place* |
| 2021-04-24 14:57:07 | <geekosaur> | there's even a convenient centering thing to use with it in X.H.ManageHelpers |
| 2021-04-24 14:57:12 | <geekosaur> | (doCenterFloat) |
| 2021-04-24 14:57:41 | <kajzer> | got it, thanks! |
| 2021-04-24 14:58:13 | <kajzer> | one more thing, how can i make new windows appear on stack and not on master ? |
| 2021-04-24 14:59:08 | <geekosaur> | X.H.InsertPosition |
| 2021-04-24 14:59:34 | <kajzer> | ok nice, thx again |
| 2021-04-24 15:06:24 | <kajzer> | geekosaur: yeah, I used that one |
| 2021-04-24 15:21:28 | → | tanner_ joins (~tanner@216.106.138.184) |
| 2021-04-24 15:29:57 | × | oogeek quits (~szz_@45.135.186.41) (Read error: Connection reset by peer) |
| 2021-04-24 16:11:14 | × | sibi quits (psibimatri@gateway/shell/matrix.org/x-gbbqcailfzluadcn) (Ping timeout: 245 seconds) |
| 2021-04-24 16:11:39 | × | mohab[m]1 quits (mohabpriva@gateway/shell/matrix.org/x-rtmxwwfymlnpbmnr) (Ping timeout: 245 seconds) |
| 2021-04-24 16:12:11 | → | growpotkin joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-04-24 16:13:02 | → | sibi joins (psibimatri@gateway/shell/matrix.org/x-kxwhroswmkckjouq) |
| 2021-04-24 16:16:12 | → | mohab[m]1 joins (mohabpriva@gateway/shell/matrix.org/x-avrmxuhgzwmeqvkj) |
| 2021-04-24 16:17:02 | × | geekosaur quits (930099da@rrcs-147-0-153-218.central.biz.rr.com) (Ping timeout: 240 seconds) |
| 2021-04-24 16:28:27 | × | ericsagn1 quits (~ericsagne@2405:6580:0:5100:bd68:2e0:1f11:8b3a) (Ping timeout: 250 seconds) |
| 2021-04-24 16:41:14 | → | ericsagn1 joins (~ericsagne@2405:6580:0:5100:9e02:7bf3:beb9:eefe) |
| 2021-04-24 16:51:18 | × | dxld quits (~dxld@rush.pub.dxld.at) (Remote host closed the connection) |
| 2021-04-24 16:56:02 | → | wonko7 joins (~wonko7@62.115.229.50) |
| 2021-04-24 17:41:38 | → | ADG1089 joins (~aditya@171.76.29.233) |
| 2021-04-24 18:21:44 | × | eyenx quits (~eyenxeyen@unaffiliated/eye/x-1653358) (Quit: Bridge terminating on SIGTERM) |
| 2021-04-24 18:27:34 | → | eyenx joins (~eyenxeyen@unaffiliated/eye/x-1653358) |
| 2021-04-24 18:28:41 | × | materiyolo quits (~materiyol@112.204.174.249) (Ping timeout: 240 seconds) |
| 2021-04-24 18:52:31 | × | ADG1089 quits (~aditya@171.76.29.233) (Remote host closed the connection) |
| 2021-04-24 19:01:52 | → | growpotk- joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-04-24 19:08:49 | × | growpotk- quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Ping timeout: 252 seconds) |
| 2021-04-24 19:19:02 | × | ml| quits (~ml|@unaffiliated/ml/x-3958674) (Ping timeout: 246 seconds) |
| 2021-04-24 19:39:49 | → | growpotk- joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-04-24 19:43:52 | × | growpotk- quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Ping timeout: 240 seconds) |
| 2021-04-24 19:52:39 | → | ml| joins (~ml|@unaffiliated/ml/x-3958674) |
| 2021-04-24 19:56:07 | × | notis quits (~notis@45.134.20.36) (Ping timeout: 252 seconds) |
| 2021-04-24 19:58:04 | → | notis joins (~notis@185.51.134.229) |
| 2021-04-24 19:58:27 | × | nova quits (~novasenco@gateway/tor-sasl/novasenco) (Remote host closed the connection) |
| 2021-04-24 20:00:40 | → | nova joins (~novasenco@gateway/tor-sasl/novasenco) |
| 2021-04-24 20:08:29 | → | growpotk- joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-04-24 20:14:04 | → | rekahsoft joins (~rekahsoft@cpe0008a20f982f-cm64777d666260.cpe.net.cable.rogers.com) |
| 2021-04-24 20:15:21 | × | growpotkin quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Quit: ZNC 1.8.2 - https://znc.in) |
| 2021-04-24 20:16:11 | → | growpotkin joins (~growpotki@130-45-30-154.dyn.grandenetworks.net) |
| 2021-04-24 20:36:02 | × | growpotk- quits (~growpotki@130-45-30-154.dyn.grandenetworks.net) (Ping timeout: 246 seconds) |
| 2021-04-24 20:47:47 | × | tanner_ quits (~tanner@216.106.138.184) (Quit: tanner_) |
| 2021-04-24 20:51:28 | × | notis quits (~notis@185.51.134.229) (Read error: Connection reset by peer) |
| 2021-04-24 20:53:38 | → | notis joins (~notis@77.49.228.210.dsl.dyn.forthnet.gr) |
| 2021-04-24 21:16:12 | × | ectospasm quits (~ectospasm@unaffiliated/ectospasm) (*.net *.split) |
| 2021-04-24 21:16:13 | × | Dr_Jazz quits (~jazz@stolen.plutonium.dk) (*.net *.split) |
| 2021-04-24 21:16:13 | × | brettgilio quits (~brettgili@brettgilio.com) (*.net *.split) |
| 2021-04-24 21:16:14 | × | vanvik quits (~nimor@82.194.204.210) (*.net *.split) |
| 2021-04-24 21:16:14 | × | mniip quits (mniip@freenode/staff/mniip) (*.net *.split) |
| 2021-04-24 21:16:14 | × | alex88 quits (~alex88@unaffiliated/alex88) (*.net *.split) |
| 2021-04-24 21:16:14 | × | jtcs_ quits (~jtcs@vmi359854.contaboserver.net) (*.net *.split) |
| 2021-04-24 21:16:14 | × | Ristovski quits (~364e20076@unaffiliated/ristovski) (*.net *.split) |
| 2021-04-24 21:16:15 | × | styledash quits (~styledash@157.230.173.136) (*.net *.split) |
| 2021-04-24 21:16:16 | × | Irishluck83 quits (~Irishluck@unaffiliated/irishluck83) (*.net *.split) |
| 2021-04-24 21:16:17 | × | friki quits (~friki@friki.cat) (*.net *.split) |
| 2021-04-24 21:16:17 | × | ft quits (~ft@shell.chaostreff-dortmund.de) (*.net *.split) |
| 2021-04-24 21:16:17 | × | thc202 quits (~thc202@unaffiliated/thc202) (*.net *.split) |
| 2021-04-24 21:16:18 | × | ryjm quits (sid383513@gateway/web/irccloud.com/x-mfvpahefkuhsmhxj) (*.net *.split) |
| 2021-04-24 21:16:23 | × | Liskni_si quits (~liskin@ackle.nomi.cz) (*.net *.split) |
| 2021-04-24 21:16:23 | × | benley quits (benley@osric.zoiks.net) (*.net *.split) |
| 2021-04-24 21:16:24 | × | MasseR quits (~MasseR@51.15.143.128) (*.net *.split) |
| 2021-04-24 21:16:24 | × | matijja quits (~matijja@193.77.181.208) (*.net *.split) |
| 2021-04-24 21:16:24 | × | rieper|net quits (~riepernet@sxbeta1.geo.uni-leipzig.de) (*.net *.split) |
| 2021-04-24 21:16:26 | × | bsima quits (~bsima@simatime.com) (*.net *.split) |
| 2021-04-24 21:16:28 | × | MrElendig quits (~Urist@archlinux/op/pdpc.supporter.active.mrelendig) (*.net *.split) |
All times are in UTC.