Logs: freenode/#xmonad
| 2021-01-05 22:22:56 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Remote host closed the connection) |
| 2021-01-05 22:23:26 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-01-05 22:23:41 | <toniz4> | oops, killed the window by mistake |
| 2021-01-05 22:23:59 | <toniz4> | and xmonad is allocating space for the bar |
| 2021-01-05 22:25:36 | <dariof4> | have you tried just running it with "xmobar" instead of "xmobar ~/.config/xmobar/xmobar.hs"? |
| 2021-01-05 22:26:50 | <toniz4> | same problem |
| 2021-01-05 22:27:22 | <dariof4> | oh actually, that should point to "~/.config/xmobar/xmobarrc" instead of xmobar.hs i think |
| 2021-01-05 22:28:14 | <toniz4> | dariof4: the config is the default one, i just renamed it |
| 2021-01-05 22:28:28 | <toniz4> | im going to change the name of it |
| 2021-01-05 22:28:37 | <dariof4> | and can you pastebin your xmonad.hs so i can take a look at it and maybe see if i find anything? |
| 2021-01-05 22:28:43 | <toniz4> | sure |
| 2021-01-05 22:28:59 | <toniz4> | https://0x0.st/-s9r.hs |
| 2021-01-05 22:33:03 | <dariof4> | weird, your config is not working for me either |
| 2021-01-05 22:36:18 | <toniz4> | dariof4: my xmobar config is default, just changed the font |
| 2021-01-05 22:44:23 | <dariof4> | toniz4: i found the issue |
| 2021-01-05 22:44:47 | <toniz4> | dariof4: nice, where it is? |
| 2021-01-05 22:47:14 | <dariof4> | replace "logHook = myLogHook" with "logHook = dynamicLogWithPP xmobarPP |
| 2021-01-05 22:47:16 | <dariof4> | { ppOutput = hPutStrLn xmproc |
| 2021-01-05 22:47:18 | <dariof4> | } |
| 2021-01-05 22:47:20 | <dariof4> | , |
| 2021-01-05 22:48:23 | <dariof4> | and also change "defaults = def { blah blah blah}" to "defaults xmproc = def {blah blah blah}" |
| 2021-01-05 22:49:05 | × | mc47 quits (~yecinem@89.246.239.190) (Remote host closed the connection) |
| 2021-01-05 22:49:05 | <dariof4> | and the last thing to change is in main replace "xmonad defaults" with "xmonad $ defaults xmproc" |
| 2021-01-05 22:49:33 | <dariof4> | and it should work hopefully |
| 2021-01-05 22:50:18 | <toniz4> | dariof4: can i change myLoghook instead of logHook directly? |
| 2021-01-05 22:51:38 | <dariof4> | I'm not 100% sure tbh |
| 2021-01-05 22:51:50 | <toniz4> | gonna try the way you said first |
| 2021-01-05 22:53:57 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: Lost terminal) |
| 2021-01-05 22:54:45 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-01-05 22:54:55 | <toniz4> | still isn't working ;( |
| 2021-01-05 22:55:39 | <dariof4> | let me try to give you the pastebin to your config with the change i made, wait a seconed |
| 2021-01-05 22:55:53 | <toniz4> | ok thanks! |
| 2021-01-05 22:56:40 | <toniz4> | btw, i use this function in my shell to upload files to 0x0.st |
| 2021-01-05 22:56:47 | <toniz4> | upload0x0() { |
| 2021-01-05 22:56:48 | <toniz4> | for arg in "$@"; do |
| 2021-01-05 22:56:48 | <toniz4> | curl -F"file=@${arg}" https://0x0.st |
| 2021-01-05 22:56:48 | <toniz4> | done |
| 2021-01-05 22:56:48 | <toniz4> | } |
| 2021-01-05 23:10:29 | × | seschwar quits (~seschwar@unaffiliated/seschwar) (Quit: :wq) |
| 2021-01-05 23:16:58 | <dariof4> | toniz4: ughh, i got the bar working, but it's no longer leaving the space for it |
| 2021-01-05 23:17:35 | <toniz4> | damm |
| 2021-01-05 23:18:24 | <dariof4> | oh wait i got it working |
| 2021-01-05 23:19:00 | <toniz4> | haskell looks like an alien language to me lol, i can't understand a line of it |
| 2021-01-05 23:20:12 | <dariof4> | https://pastebin.com/aAwVCYLu |
| 2021-01-05 23:20:14 | <dariof4> | try this |
| 2021-01-05 23:20:17 | <dariof4> | should work |
| 2021-01-05 23:21:00 | <dariof4> | though it was giving me some trouble with firefox for some reason |
| 2021-01-05 23:24:19 | <toniz4> | dariof4: it allocates space for the bar, but it doesn't show |
| 2021-01-05 23:24:24 | <dariof4> | oh and also you should change your xmobar config by adding %StdinReader% to your template, eg. ", template = "%StdinReader%}{ %mpd% | %memory% | %RJTT% | %date% || %kbd% "and also add ", Run StdinReader" where all the other things are run |
| 2021-01-05 23:24:32 | <toniz4> | are you using a different config for the xmobar? |
| 2021-01-05 23:25:01 | <dariof4> | try adding those two things i mentioned to your xmobar config |
| 2021-01-05 23:27:11 | <dariof4> | https://pastebin.com/QhLR71DY |
| 2021-01-05 23:27:17 | <dariof4> | this is my xmobar config |
| 2021-01-05 23:29:16 | × | andytoshi quits (~apoelstra@unaffiliated/andytoshi) (Read error: Connection reset by peer) |
| 2021-01-05 23:29:40 | → | andytoshi joins (~apoelstra@S0106d45d64bd1001.vs.shawcable.net) |
| 2021-01-05 23:29:40 | × | andytoshi quits (~apoelstra@S0106d45d64bd1001.vs.shawcable.net) (Changing host) |
| 2021-01-05 23:29:40 | → | andytoshi joins (~apoelstra@unaffiliated/andytoshi) |
| 2021-01-05 23:36:54 | <toniz4> | dariof4: i'm having this problem https://0x0.st/-s9_.txt |
| 2021-01-05 23:38:04 | <dariof4> | oh woops |
| 2021-01-05 23:38:35 | <dariof4> | it didn't copy properly, that line should be [ Run Weather "RJTT" [ "--template", "<skyCondition> | <fc=#88c0d0><tempC></fc>°C | <fc=#88c0d0><rh></fc>% | <fc=#88c0d0><pressure></fc>hPa" |
| 2021-01-05 23:49:38 | <toniz4> | now im having this error , Run = StdinReader |
| 2021-01-05 23:49:40 | <toniz4> | oops |
| 2021-01-05 23:49:44 | <toniz4> | https://0x0.st/-s9W.txt |
| 2021-01-05 23:50:56 | <dariof4> | that's weird |
| 2021-01-05 23:52:55 | <dariof4> | can i see the full config? |
| 2021-01-05 23:53:05 | <dariof4> | and try to see if it works on my system |
| 2021-01-05 23:55:05 | <toniz4> | https://dpaste.com/EYG9SGAS5 |
| 2021-01-05 23:56:26 | <dariof4> | hmm |
| 2021-01-05 23:56:47 | <dariof4> | when does it give you that error? |
| 2021-01-05 23:57:10 | <toniz4> | when i run xmobar xmobarrc |
| 2021-01-06 00:00:14 | <dariof4> | your file is name config.hs right, if so have you tried naming it something not ending with .hs, it might be xmobar that's interpreting your file as a haskell file or something |
| 2021-01-06 00:02:59 | <toniz4> | dariof4: renamed it to config.hs, same issue |
| 2021-01-06 00:03:18 | <toniz4> | I'm going to restart my machine really quick |
| 2021-01-06 00:03:22 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: leaving) |
| 2021-01-06 00:06:41 | → | toniz4 joins (~toniz4@unaffiliated/toniz4) |
| 2021-01-06 00:07:24 | <toniz4> | found the issue, i needed DBUS_SESSION_BUS_PID to be set with the default config |
| 2021-01-06 00:07:36 | <toniz4> | Finlay it works |
| 2021-01-06 00:07:43 | <dariof4> | woohoo |
| 2021-01-06 00:08:19 | <dariof4> | getting xmobar to work was a massive pain for me as well |
| 2021-01-06 00:08:38 | <dariof4> | btw thanks for the 0x0.st script |
| 2021-01-06 00:08:40 | <Irishluck83> | same for me at first. |
| 2021-01-06 00:10:08 | <toniz4> | Irishluck83: oh hello irish |
| 2021-01-06 00:10:37 | <Irishluck83> | sorry i missed your pm i was at work |
| 2021-01-06 00:10:49 | <toniz4> | lets see if i can adapt with xmonad now lol |
| 2021-01-06 00:10:56 | <toniz4> | Irishluck83: no problem |
| 2021-01-06 00:11:09 | <Irishluck83> | :) |
| 2021-01-06 00:11:22 | <Irishluck83> | once you get it the way you want its hard to move anywhere else |
| 2021-01-06 00:11:26 | <Irishluck83> | i know i have tried |
| 2021-01-06 00:13:02 | <toniz4> | dariof4: thanks for the help! |
| 2021-01-06 00:13:39 | <dariof4> | no problem, have a good day! :-) |
| 2021-01-06 00:17:37 | × | rabliatu quits (~quassel@193.37.252.44) (Ping timeout: 264 seconds) |
| 2021-01-06 00:24:16 | → | andytosh1 joins (~apoelstra@S010694103e09beaa.vs.shawcable.net) |
| 2021-01-06 00:27:22 | × | andytoshi quits (~apoelstra@unaffiliated/andytoshi) (Ping timeout: 246 seconds) |
| 2021-01-06 00:32:58 | × | toniz4 quits (~toniz4@unaffiliated/toniz4) (Quit: Lost terminal) |
| 2021-01-06 00:33:06 | × | thc202 quits (~thc202@unaffiliated/thc202) (Quit: thc202) |
| 2021-01-06 00:36:49 | × | notis quits (~notis@185.51.134.229) (Ping timeout: 264 seconds) |
| 2021-01-06 00:41:03 | × | xaltsc_ quits (~xaltsc@unaffiliated/xaltsc) (Ping timeout: 268 seconds) |
| 2021-01-06 00:58:25 | × | abhixec quits (~abhixec@c-67-169-139-16.hsd1.ca.comcast.net) (Ping timeout: 264 seconds) |
| 2021-01-06 01:03:49 | × | andytosh1 quits (~apoelstra@S010694103e09beaa.vs.shawcable.net) (Ping timeout: 264 seconds) |
| 2021-01-06 01:04:56 | × | dariof4 quits (~dariof4@5.77.88.155) (Quit: WeeChat 3.0) |
All times are in UTC.