2022-02-09 00:16:17 +0100 | jao | (~jao@211.68.17.95.dynamic.jazztel.es) (Ping timeout: 240 seconds) |
2022-02-09 00:18:46 +0100 | jao | (~jao@static-68-235-44-10.cust.tzulo.com) |
2022-02-09 00:33:40 +0100 | seschwar | (~seschwar@user/seschwar) (Quit: :wq) |
2022-02-09 00:55:20 +0100 | liskin | has been looking into the xmobar memleak today; kinda expected the investigation to be easier |
2022-02-09 00:55:39 +0100 | <liskin> | it's a slow leak so hp2ps and similar are completely useless |
2022-02-09 00:56:27 +0100 | <liskin> | I have 3 gigs of .hp data (and still growing) which I analyze using shit like grep, sort and python/numpy |
2022-02-09 00:58:45 +0100 | <davean> | liskin: I know nothing about xmobar but I had a similar thing with taffybar where they had a Chan they pushed to but never consumed |
2022-02-09 00:59:26 +0100 | <liskin> | davean: how did you figure that out? any tips? |
2022-02-09 00:59:46 +0100 | <davean> | Oh I just ran a profiled build |
2022-02-09 01:00:19 +0100 | <davean> | I have no idea why you think the standard tools aren't useful when its slow |
2022-02-09 01:00:32 +0100 | <davean> | so I probably can't help other than mention a pattern that might be relivent |
2022-02-09 01:00:55 +0100 | <davean> | you can ask whats holding the memory, what type of memory it is, where it came from, anything I'd think you might want though |
2022-02-09 01:01:07 +0100 | <liskin> | well because I need to collect thousands to millions of samples before anything shows up |
2022-02-09 01:01:15 +0100 | <davean> | Right? So? |
2022-02-09 01:01:27 +0100 | <liskin> | hp2ps takes minutes to process a small .hp file |
2022-02-09 01:01:48 +0100 | <geekosaur> | twiclo, https://github.com/jaor/xmobar/blob/master/doc/plugins.org |
2022-02-09 01:02:06 +0100 | <davean> | try hp2pretty? |
2022-02-09 01:02:27 +0100 | <davean> | I have no experience with processing hps being slow |
2022-02-09 01:02:28 +0100 | <liskin> | I mean it's probably easy to write a script to drop most samples and just leave one for every 1000, I'm just suprised that I haven't been able to google for an existing solution :-) |
2022-02-09 01:03:37 +0100 | <geekosaur> | twiclo, which says it's fixed at kB/s |
2022-02-09 01:04:14 +0100 | <davean> | liskin: https://hackage.haskell.org/package/hp2pretty |
2022-02-09 01:04:15 +0100 | <liskin> | oh, hp2pretty claims to support reading large files, I guess I should try that indeed |
2022-02-09 01:05:59 +0100 | <liskin> | davean: will try it tomorrow, thanks |
2022-02-09 01:07:17 +0100 | <liskin> | davean: the other problem with "slow" is that if I need different profiling output (like -hy instead of -hc), I need to run it again and wait a couple hours :-) |
2022-02-09 01:08:07 +0100 | <geekosaur> | have you looked into eventlog? I think that's been replacing theold profiling stuff because it's more flexible and there are more tools for it |
2022-02-09 01:08:58 +0100 | <davean> | eventlog is a thing but I wasn't quite ready to recomend it |
2022-02-09 01:09:05 +0100 | <liskin> | hm, haven't, perhaps https://mpickering.github.io/eventlog2html/ could be useful too |
2022-02-09 01:44:54 +0100 | mvk | (~mvk@2607:fea8:5cdc:bf00::5483) |
2022-02-09 01:44:55 +0100 | catman | (~catman@user/catman) (Remote host closed the connection) |
2022-02-09 02:21:09 +0100 | mohab | (~mohab@45.243.71.249) (Quit: WeeChat 3.4) |
2022-02-09 02:34:33 +0100 | <twiclo1> | I have this in my config |
2022-02-09 02:34:45 +0100 | <twiclo1> | , ((modm, xK_d), spawn "dmenu_run -nb '$color0' -nf '$color15' -sb '$color1' -sf '$color15'") |
2022-02-09 02:35:04 +0100 | <twiclo1> | I recently added the color options. mod+d worked but adding those broke it |
2022-02-09 02:35:15 +0100 | <twiclo1> | Do I need to escape the quotes or something? |
2022-02-09 02:38:19 +0100 | <twiclo1> | Okay taking the quotes out completely still doesn't work |
2022-02-09 02:41:57 +0100 | <twiclo1> | Is xmonad not getting the environment variables? |
2022-02-09 02:44:28 +0100 | <geekosaur> | typically xmonad is spawned in an environment which doesn't have your environment |
2022-02-09 02:44:41 +0100 | <twiclo1> | What's the recommended solution for this? |
2022-02-09 02:44:43 +0100 | <geekosaur> | you could try changing that to: |
2022-02-09 02:45:08 +0100 | <geekosaur> | , ((modm, xK_d), spawn "source .bash_profile; dmenu_run -nb '$color0' -nf '$color15' -sb '$color1' -sf '$color15'") |
2022-02-09 02:45:27 +0100 | <geekosaur> | I start xmonad via a wrapper script which loads my environment. other people have other solutions |
2022-02-09 02:45:40 +0100 | Guest6335 | (~Guest63@47.153.196.157) |
2022-02-09 02:46:25 +0100 | <Guest6335> | After a recent update to xmobar/linux my font awesome fonts display as boxes in xmobar. I can see they are working in the vim file, is anyone else experiencing this |
2022-02-09 02:47:41 +0100 | <geekosaur> | hm, actually remove those single quotes. they prevent variable substitution by the shell |
2022-02-09 02:48:08 +0100 | <geekosaur> | if you need quoting you'll have touse escaped double quotes (e.g. \"$color15\") |
2022-02-09 03:15:51 +0100 | <Guest6335> | anyone else running into the xmobar icon issue? |
2022-02-09 03:17:35 +0100 | <Guest6335> | its with font awesome 5 |
2022-02-09 03:19:55 +0100 | Guest6335 | (~Guest63@47.153.196.157) (Quit: Client closed) |
2022-02-09 03:20:19 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
2022-02-09 03:22:01 +0100 | Guest6355 | (~Guest63@47.153.196.157) |
2022-02-09 03:22:26 +0100 | <Guest6355> | sorry i got disconnected, i had asked about the xmobar, dont know if anyone got to it |
2022-02-09 03:22:35 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 03:47:31 +0100 | catman | (~catman@user/catman) |
2022-02-09 04:02:49 +0100 | banc | (banc@gateway/vpn/airvpn/banc) (Ping timeout: 256 seconds) |
2022-02-09 04:10:47 +0100 | <galactic_starfis> | I had ran into that problem before in the past, switching where I installed XMobar from solved the issue. |
2022-02-09 04:11:38 +0100 | <galactic_starfis> | I had installed it from the (nix)[https://nixos.org/nix] repos, and changing it to the one from the arch repos seemed to solve it. |
2022-02-09 04:11:54 +0100 | <galactic_starfis> | * I had installed it from the [nix](https://nixos.org/nix) repos, and changing it to the one from the arch repos seemed to solve it. |
2022-02-09 04:12:29 +0100 | jao | (~jao@static-68-235-44-10.cust.tzulo.com) (Remote host closed the connection) |
2022-02-09 04:19:14 +0100 | jao | (~jao@static-68-235-44-10.cust.tzulo.com) |
2022-02-09 04:21:04 +0100 | banc | (banc@gateway/vpn/airvpn/banc) |
2022-02-09 04:42:28 +0100 | terrorjack | (~terrorjac@2a01:4f8:1c1e:509a::1) (Quit: The Lounge - https://thelounge.chat) |
2022-02-09 04:43:46 +0100 | steve__ | (~steve@ool-182c2b80.dyn.optonline.net) (Ping timeout: 260 seconds) |
2022-02-09 04:44:53 +0100 | terrorjack | (~terrorjac@2a01:4f8:1c1e:509a::1) |
2022-02-09 04:45:49 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
2022-02-09 04:47:15 +0100 | td_ | (~td@muedsl-82-207-238-149.citykom.de) (Ping timeout: 256 seconds) |
2022-02-09 04:48:42 +0100 | td_ | (~td@94.134.91.16) |
2022-02-09 04:58:27 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 05:00:01 +0100 | haasn | (~nand@haasn.dev) (Quit: ZNC 1.7.5+deb4 - https://znc.in) |
2022-02-09 05:01:56 +0100 | haasn | (~nand@haasn.dev) |
2022-02-09 05:05:48 +0100 | catman | (~catman@user/catman) (Read error: Connection reset by peer) |
2022-02-09 05:16:23 +0100 | Guest4885 | (~Guest48@47.153.196.157) |
2022-02-09 05:16:51 +0100 | <Guest4885> | within xmobar how do you get around the forwardslash '\' counting as a new line when trying to apply unicode in the template section at the bottom? |
2022-02-09 05:17:34 +0100 | <Guest4885> | \{<fc=#b3afc2> <fn=3>\xf17c</fn> %uname% </fc>\ |
2022-02-09 05:17:34 +0100 | <Guest4885> | \|<fc=#b48ead> <fn=1> </fn><action=`alacritty -e sudo pacman -Syu`> %pacupdate%</action></fc>\ |
2022-02-09 05:17:35 +0100 | <Guest4885> | see snipit please |
2022-02-09 05:17:43 +0100 | <Guest4885> | the |
2022-02-09 05:17:54 +0100 | <Guest4885> | the \xf17c is not rendered at all |
2022-02-09 05:36:40 +0100 | scardinal | (~supreme@customer-212-237-101-39.ip4.gigabit.dk) (Ping timeout: 268 seconds) |
2022-02-09 05:40:36 +0100 | <twiclo1> | I have a colors.hs file ~/.xmonad/lib. What should the import for this file look like? |
2022-02-09 05:40:51 +0100 | <twiclo1> | I read it should be import XMonad.Stack.Colors but that didn't work |
2022-02-09 05:47:55 +0100 | scardinal | (~supreme@customer-212-237-101-39.ip4.gigabit.dk) |
2022-02-09 06:40:55 +0100 | jao | (~jao@static-68-235-44-10.cust.tzulo.com) (Ping timeout: 256 seconds) |
2022-02-09 06:56:21 +0100 | Guest4885 | (~Guest48@47.153.196.157) (Quit: Client closed) |
2022-02-09 07:39:28 +0100 | Guest6355 | (~Guest63@47.153.196.157) (Quit: Client closed) |
2022-02-09 08:14:57 +0100 | <Solid> | <geekosaur> if you really want one per screen you want to use withSB three times, changing each "xmobar" to "xmobar -x1" etc. << that's why we have dynamicSBs! |
2022-02-09 08:16:41 +0100 | dschrempf | (~dominik@mobiledyn-62-240-134-126.mrsn.at) |
2022-02-09 08:17:56 +0100 | <Solid> | twiclo1: you can just import it as "Colors" |
2022-02-09 08:18:09 +0100 | <Solid> | but do note that the file also has to be named "Colors.hs" |
2022-02-09 08:19:11 +0100 | dschrempf | (~dominik@mobiledyn-62-240-134-126.mrsn.at) (Client Quit) |
2022-02-09 08:30:16 +0100 | mohab | (~mohab@45.243.71.249) |
2022-02-09 08:55:40 +0100 | mc47 | (~mc47@xmonad/TheMC47) |
2022-02-09 08:58:52 +0100 | cfricke | (~cfricke@user/cfricke) |
2022-02-09 09:51:43 +0100 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 3.3) |
2022-02-09 09:59:02 +0100 | cfricke | (~cfricke@user/cfricke) |
2022-02-09 10:52:10 +0100 | mohab | (~mohab@45.243.71.249) (Quit: WeeChat 3.4) |
2022-02-09 10:55:19 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
2022-02-09 10:55:38 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 11:42:17 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Ping timeout: 240 seconds) |
2022-02-09 11:45:32 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 14:07:49 +0100 | mvk | (~mvk@2607:fea8:5cdc:bf00::5483) (Ping timeout: 240 seconds) |
2022-02-09 14:32:01 +0100 | dschrempf | (~dominik@mobiledyn-62-240-134-126.mrsn.at) |
2022-02-09 15:06:43 +0100 | dschrempf | (~dominik@mobiledyn-62-240-134-126.mrsn.at) (Quit: WeeChat 3.3) |
2022-02-09 15:09:54 +0100 | catman | (~catman@user/catman) |
2022-02-09 15:30:52 +0100 | seschwar | (~seschwar@user/seschwar) |
2022-02-09 15:52:10 +0100 | jao | (~jao@66.63.167.168) |
2022-02-09 16:08:14 +0100 | jao | (~jao@66.63.167.168) (Remote host closed the connection) |
2022-02-09 16:09:24 +0100 | jao | (~jao@66.63.167.168) |
2022-02-09 16:47:03 +0100 | mvk | (~mvk@2607:fea8:5cdc:bf00::5483) |
2022-02-09 16:56:42 +0100 | twiclo | (~twiclo@2604:7b80:2000:1069:52fc:cedd:fbeb:10c) (Quit: WeeChat 3.4) |
2022-02-09 17:19:19 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
2022-02-09 17:21:03 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 17:42:57 +0100 | mohab | (~mohab@45.243.71.249) |
2022-02-09 17:51:34 +0100 | mohab | (~mohab@45.243.71.249) (Quit: WeeChat 3.4) |
2022-02-09 18:48:43 +0100 | Rue | (~rue@2001-b011-1000-1402-f4fe-f6f9-1dd3-9979.dynamic-ip6.hinet.net) (Quit: WeeChat 3.4) |
2022-02-09 19:34:30 +0100 | cfricke | (~cfricke@user/cfricke) (Quit: WeeChat 3.3) |
2022-02-09 21:02:49 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) (Remote host closed the connection) |
2022-02-09 21:04:59 +0100 | geekosaur | (~geekosaur@xmonad/geekosaur) |
2022-02-09 21:15:31 +0100 | jao | (~jao@66.63.167.168) (Ping timeout: 256 seconds) |
2022-02-09 21:52:36 +0100 | jao | (~jao@static-68-235-44-24.cust.tzulo.com) |
2022-02-09 22:34:17 +0100 | mc47 | (~mc47@xmonad/TheMC47) (Remote host closed the connection) |
2022-02-09 23:07:17 +0100 | steve__ | (~steve@ool-182c2b80.dyn.optonline.net) |