2020-03-06T01:38:03 #kisslinux night 2020-03-06T03:07:00 #kisslinux hi 2020-03-06T03:07:06 #kisslinux hey 2020-03-06T03:07:15 #kisslinux whatts up 2020-03-06T04:39:51 #kisslinux ioraff: youtube-dl-git is already a package. 2020-03-06T04:40:35 #kisslinux adamantium: Can we drop youtube-dl-git in favour of ioraff's package? 2020-03-06T04:43:36 #kisslinux > Building a new React app with create-react-app requires 4304 directories and 28678 files. 2020-03-06T04:43:39 #kisslinux Good god 2020-03-06T04:45:37 #kisslinux dylanaraps: is there a quick pure sh way to remove all non-spaces from a string? 2020-03-06T04:46:19 #kisslinux Yeah 2020-03-06T04:46:41 #kisslinux how do I do it? 2020-03-06T04:47:04 #kisslinux Split the string into words using `set -- $var` then 'IFS= echo "$*"' iirc 2020-03-06T04:47:26 #kisslinux Use 'set -f; set +f -- $var' to disable globbing and make it safe 2020-03-06T04:47:42 #kisslinux doesn't that remove all spaces? 2020-03-06T04:49:16 #kisslinux So you want only spaces? 2020-03-06T04:51:07 #kisslinux Ah 2020-03-06T04:51:37 #kisslinux Split it the same and do 'echo "$*"' without 'IFS=' 2020-03-06T04:52:31 #kisslinux https://termbin.com/mdxn 2020-03-06T04:52:37 #kisslinux wait what did they mean by non-spaces? 2020-03-06T04:52:39 #kisslinux This works for me 2020-03-06T04:52:43 #kisslinux I thought it was literally anything but a space 2020-03-06T04:52:47 #kisslinux Stripping tabs, etc 2020-03-06T04:52:57 #kisslinux This will also collapse all spaces to singular spaces 2020-03-06T04:53:10 #kisslinux You could modify IFS to prevent that, no? 2020-03-06T04:53:14 #kisslinux If you just want leading/trailing, it's possible too 2020-03-06T04:55:05 #kisslinux https://termbin.com/8new 2020-03-06T04:55:21 #kisslinux That'll strip only leading/trailing 2020-03-06T04:55:43 #kisslinux I want the exact number of spaces in the string and nothing else, so if it's like ' a b ' (there's 1 space, then a, then 2 spaces, then b, then 1 space), the output would be ' ' (4 spaces) 2020-03-06T04:56:02 #kisslinux Oh 2020-03-06T04:56:46 #kisslinux Set IFS to everything but a space, heh 2020-03-06T04:57:14 #kisslinux :P 2020-03-06T04:57:14 #kisslinux I don't think there's really any quick way to do that 2020-03-06T04:58:10 #kisslinux In bash it'd be easy 2020-03-06T04:58:19 #kisslinux Yep, "${var//[^ ]}" 2020-03-06T04:58:27 #kisslinux Yup 2020-03-06T05:06:12 #kisslinux Or actually, you could strip all the spaces using set and IFS 2020-03-06T05:06:19 #kisslinux then you could set IFS to the resulting stripped string 2020-03-06T05:06:25 #kisslinux and run the original string through that 2020-03-06T05:07:35 #kisslinux lol 2020-03-06T05:08:05 #kisslinux yeah, not sure if that counts as quick but ¯_(ツ)_/¯ 2020-03-06T05:09:24 #kisslinux https://termbin.com/lyep 2020-03-06T05:09:25 #kisslinux Works 2020-03-06T05:09:56 #kisslinux Can drop the quotes at IFS="$*" 2020-03-06T05:10:32 #kisslinux You should initialize IFS to a space if you don't want to strip tabs and such, though 2020-03-06T05:10:39 #kisslinux https://termbin.com/92a9 2020-03-06T05:10:42 #kisslinux True 2020-03-06T05:11:17 #kisslinux https://termbin.com/jsgp 2020-03-06T05:11:26 #kisslinux brb 2 secs 2020-03-06T05:11:27 #kisslinux Shouldn't the first set not have the +f? 2020-03-06T05:12:51 #kisslinux Well, you're disabling globbing 2020-03-06T05:13:25 #kisslinux But you enabled it in the first set and didn't disable it for the second set? 2020-03-06T05:14:17 #kisslinux So couldn't you just keep it disabled in the first and only enable it on the second? 2020-03-06T05:17:47 #kisslinux https://github.com/Crestwave/snippets/blob/master/count.sh 2020-03-06T05:20:03 #kisslinux Although honestly looping over every character would probably be quicker than this 2020-03-06T05:20:09 #kisslinux Ah 2020-03-06T05:37:01 #kisslinux https://termbin.com/84nw 2020-03-06T05:37:01 #kisslinux My net went down 2020-03-06T05:37:01 #kisslinux I sent this a while ago :P 2020-03-06T05:56:41 #kisslinux Added more docs https://github.com/dylanaraps/birch 2020-03-06T06:04:25 #kisslinux dylanaraps: The script you sent only seems to count leading spaces, though? 2020-03-06T06:05:58 #kisslinux Ah 2020-03-06T06:06:04 #kisslinux brb 2020-03-06T06:06:39 #kisslinux I'm not fully awake ye 2020-03-06T06:06:43 #kisslinux yet* 2020-03-06T06:06:44 #kisslinux =P 2020-03-06T06:07:29 #kisslinux Birch no longer uses readlink or ln! 2020-03-06T06:08:17 #kisslinux crestwave: touch "${ns[@]/%/:}" 2020-03-06T06:08:19 #kisslinux Any ideas? 2020-03-06T06:08:32 #kisslinux Basically, I need to create a file for each array item. 2020-03-06T06:08:40 #kisslinux Appending ':' to the end of each file name. 2020-03-06T06:09:01 #kisslinux I could use a loop thougt it may be slow if > 100 files need to be created. 2020-03-06T06:10:18 #kisslinux Eh 2020-03-06T06:10:24 #kisslinux For loop isn't slow actually 2020-03-06T06:11:10 #kisslinux brb 2020-03-06T06:11:56 #kisslinux Only thing other than a loop I can think of so far is eval. But yeah, a loop probably won't be too slow with builtins 2020-03-06T06:12:23 #kisslinux 20ms for 3000 files 2020-03-06T06:12:26 #kisslinux Good enough 2020-03-06T06:12:34 #kisslinux Next question ;) 2020-03-06T06:12:44 #kisslinux I want to drop 'tail' 2020-03-06T06:13:04 #kisslinux I could use 'mapfile' and then print the last N elements of the resulting array 2020-03-06T06:13:28 #kisslinux Though this reads the entire file and may be slow if the file is large 2020-03-06T06:14:21 #kisslinux Yeah, reading the entire file would probably be necessary if you want to use builtins 2020-03-06T06:14:40 #kisslinux dylanaraps: dropping youtube-dl-git is fine with me if youtube-dl has a willing maintainer... 2020-03-06T06:14:48 #kisslinux It does 2020-03-06T06:15:02 #kisslinux it updates pretty frequent, not sure why one would want to maintain it but knock yourself out 2020-03-06T06:15:06 #kisslinux :D 2020-03-06T06:15:14 #kisslinux Ask ioraff: 2020-03-06T06:15:17 #kisslinux :P 2020-03-06T06:15:17 #kisslinux I said the same thing 2020-03-06T06:15:52 #kisslinux Crestwave: mapfile of an 8000 line file takes 6ms 2020-03-06T06:15:57 #kisslinux 0m0.006s 2020-03-06T06:16:14 #kisslinux seems good enough 2020-03-06T06:16:36 #kisslinux 14ms for 22500 lines 2020-03-06T06:16:41 #kisslinux That's fine 2020-03-06T06:18:19 #kisslinux brb 2020-03-06T06:24:15 #kisslinux OK 2020-03-06T06:24:18 #kisslinux Dropped tail 2020-03-06T06:24:33 #kisslinux https://github.com/dylanaraps/birch/commit/9bbe8470519f5773ab23c61add3017035fe8a74d 2020-03-06T06:25:13 #kisslinux All that's left is mkdir, rm and fold iirc 2020-03-06T06:26:07 #kisslinux Yup 2020-03-06T06:26:10 #kisslinux Just those three 2020-03-06T06:29:56 #kisslinux As an aside, you could probably make a tail with the history functions but I don't know if it would read the whole file as well and mapfile is fast enough for this usecase 2020-03-06T06:30:22 #kisslinux That'd be interesting 2020-03-06T06:31:11 #kisslinux https://github.com/dylanaraps/birch/commit/13a439b3f46bf19ba710fa65ebb86993be9cbfd9 2020-03-06T06:31:19 #kisslinux birch now uses builtin mkdir if possible 2020-03-06T06:31:24 #kisslinux So we're down to rm/fold now 2020-03-06T06:32:22 #kisslinux birch writes to 'TMPDIR', does it really _need_ to clear it on exit? ;) 2020-03-06T06:36:01 #kisslinux Well, if it's just a single file I guess not really necessary? But maybe just consider it if you can make it 100% pure bash (i.e., when you replace fold) 2020-03-06T06:37:28 #kisslinux It's a directory 2020-03-06T06:37:45 #kisslinux Which contains a file for each channel and a series of blank files for each nick. 2020-03-06T06:37:58 #kisslinux The blank files for each nick make nickname tab completion work ;) 2020-03-06T06:38:49 #kisslinux You could make a persistent directory for logs and such and throw those in there as well, maybe? 2020-03-06T06:39:15 #kisslinux I was thinking that. The issue is then having two or more clients open at once 2020-03-06T06:39:28 #kisslinux Unless I do '~/.cache/birch/$$/files' 2020-03-06T06:39:37 #kisslinux But it wouldn't be persistent then 2020-03-06T06:40:12 #kisslinux Well, weechat doesn't seem to support multiple clients at once unless you manually specify a directory 2020-03-06T06:40:20 #kisslinux You could copy that behavior 2020-03-06T06:40:23 #kisslinux Nice 2020-03-06T06:40:32 #kisslinux Sounds good 2020-03-06T06:42:15 #kisslinux dylanaraps: ok so it's very disgusting so far, but I managed to make a build_OID_registry that seems like it should work with POSIX sh (I see no bashisms in it) but if I run it with bash I get an output file that matches the perl script, but with POSIX sh I get a slightly different file, can you see what in this might be behaving differently between the 2? http://ix.io/2dvU 2020-03-06T06:42:28 #kisslinux (between the two meaning between being run with bash and sh) 2020-03-06T06:43:26 #kisslinux > : "$((tmp /= 7))" 2020-03-06T06:43:28 #kisslinux Here maybe 2020-03-06T06:43:32 #kisslinux Als 2020-03-06T06:43:33 #kisslinux Also* 2020-03-06T06:43:34 #kisslinux : "$((size += tmp))" 2020-03-06T06:43:41 #kisslinux And : "$((total_length += size))" 2020-03-06T06:43:50 #kisslinux Try doing these the long way 2020-03-06T06:43:56 #kisslinux tmp=$((tmp / 7)) 2020-03-06T06:44:02 #kisslinux Doesn't that work on shells other than minix/dragonfly? 2020-03-06T06:44:15 #kisslinux I'm not sure 2020-03-06T06:44:33 #kisslinux pretty sure those are all POSIX? 2020-03-06T06:44:36 #kisslinux Also, you actually set IFS to everything but a space heh 2020-03-06T06:44:43 #kisslinux Maybe also: "((((c >> (tmp * 7)) & 0x7f) | 0x80))" 2020-03-06T06:44:52 #kisslinux 0x and >> may not be POSIX 2020-03-06T06:45:17 #kisslinux The only one that isn't required by posix is the pre/post incre/decrement I think 2020-03-06T06:45:28 #kisslinux I'm pretty sure the difference is happening in the while [ "$((i += 1))" -lt "$#" ]; do loop because the difference in the file is just the sorting of some lies 2020-03-06T06:45:37 #kisslinux I think it's just 0x which isn't supported 2020-03-06T06:45:40 #kisslinux Though it works in ash 2020-03-06T06:46:44 #kisslinux brb 2 secs 2020-03-06T06:46:58 #kisslinux huh yeah I think it's 0x, I'll have to figure out how to do that in POSIX sh 2020-03-06T06:47:37 #kisslinux nice 2020-03-06T06:47:45 #kisslinux Fixed birch 2020-03-06T06:49:59 #kisslinux btw I tested history for tail and it seems that it does go through the whole file, but doesn't keep the entire thing in memory (i.e., it reads it in chunks and discards previous ones) 2020-03-06T06:50:18 #kisslinux Nice 2020-03-06T06:50:38 #kisslinux It's just 'fold' now fyi 2020-03-06T06:50:42 #kisslinux Then we're pure bash 2020-03-06T06:52:19 #kisslinux Crestwave: Send the code? ;) 2020-03-06T06:52:34 #kisslinux for what? history 2020-03-06T06:52:35 #kisslinux ? 2020-03-06T06:52:37 #kisslinux Yeah 2020-03-06T06:53:09 #kisslinux I just set HISTSIZE, did history -r file, then fc -ln 2020-03-06T06:53:39 #kisslinux Oh 2020-03-06T06:53:39 #kisslinux It seeems that you use history already, though 2020-03-06T06:53:43 #kisslinux Yeah 2020-03-06T06:54:01 #kisslinux Can just do HISTFILE=bla history 2020-03-06T06:54:17 #kisslinux That works? 2020-03-06T06:58:24 #kisslinux It should 2020-03-06T07:04:46 #kisslinux brb 2 secs 2020-03-06T07:10:07 #kisslinux Doesn't seem to, unless I'm misunderstanding something 2020-03-06T07:10:23 #kisslinux Oh well 2020-03-06T07:12:52 #kisslinux I mean, you could probably write out your current history, do the tail, then read back from the history file if you really want to 2020-03-06T07:13:29 #kisslinux Also, why am I seeing several rm's? Do those not count for some reason or something? 2020-03-06T07:13:39 #kisslinux Or did you not push yet? 2020-03-06T07:13:53 #kisslinux Oh 2020-03-06T07:13:56 #kisslinux You're right 2020-03-06T07:14:06 #kisslinux There's 3 rm's I forgot about 2020-03-06T07:14:10 #kisslinux lol 2020-03-06T07:14:56 #kisslinux This may be tricky 2020-03-06T07:16:14 #kisslinux Oh well 2020-03-06T07:17:17 #kisslinux Also, you're not using the loadable sleep 2020-03-06T07:19:42 #kisslinux Aha 2020-03-06T07:19:48 #kisslinux I am using sleep aren't I? 2020-03-06T07:19:57 #kisslinux yep 2020-03-06T07:22:35 #kisslinux Fixed 2020-03-06T07:22:36 #kisslinux brb 2020-03-06T07:26:49 #kisslinux back 2020-03-06T07:55:27 #kisslinux New version of promptless :^) 2020-03-06T07:55:28 #kisslinux https://github.com/dylanaraps/promptless/releases/tag/%F0%9F%A4%AE 2020-03-06T07:55:40 #kisslinux Yes emojis work as git tags 2020-03-06T08:08:15 #kisslinux o/ 2020-03-06T08:08:26 #kisslinux It's garden time 2020-03-06T08:08:31 #kisslinux I'll be on a little later 2020-03-06T09:19:49 #kisslinux dylan2: great job with the builtins in birch 2020-03-06T09:20:00 #kisslinux i didn't think about it before 2020-03-06T09:26:23 #kisslinux hehe 2020-03-06T10:14:12 #kisslinux he he 2020-03-06T10:14:18 #kisslinux I have a working word wrapper in pure bash 2020-03-06T10:14:25 #kisslinux It's fast enough too 2020-03-06T10:16:28 #kisslinux bb 2020-03-06T10:16:29 #kisslinux brb 2020-03-06T10:34:13 #kisslinux kiss l 2020-03-06T10:34:17 #kisslinux oops 2020-03-06T10:46:16 #kisslinux The word wrapper is getting better. 2020-03-06T10:46:22 #kisslinux Apologies for the spam. 2020-03-06T10:50:40 #kisslinux huuu, nice :D 2020-03-06T10:59:49 #kisslinux hallo. i'm just trying out birch and i must say its awesome. 2020-03-06T11:01:32 #kisslinux oh you're the guy who commented on the aur package 2020-03-06T11:02:50 #kisslinux crian: Thanks! 2020-03-06T11:03:02 #kisslinux Apologies again for join/quit the spam everyone. 2020-03-06T11:03:32 #kisslinux yes i am 2020-03-06T11:18:24 #kisslinux dzove855: https://github.com/dylanaraps/birch/pull/16/files 2020-03-06T11:18:40 #kisslinux Still a little buggy 2020-03-06T11:22:32 #kisslinux quit 2020-03-06T11:26:36 #kisslinux how can i scroll the output? 2020-03-06T11:29:32 #kisslinux dylan2: seems not that bad. Actually you limited in bytes sot the bash variable substition will not be slow 2020-03-06T11:29:47 #kisslinux and to limit on word splitting is actually not bad neither 2020-03-06T11:29:55 #kisslinux Yup 2020-03-06T11:30:07 #kisslinux crian: There's no scrollback _yet_ 2020-03-06T11:30:15 #kisslinux That'll be fun to handle though not impossible. 2020-03-06T11:31:23 #kisslinux this would be nice 2020-03-06T11:33:55 #kisslinux huu, didn't have seen that you remplaced tail with mapfile. I was thinking to replace it today ahah 2020-03-06T11:34:16 #kisslinux :P 2020-03-06T11:34:21 #kisslinux brb 2 secs 2020-03-06T11:34:33 #kisslinux i leave for lunch, see ya later 2020-03-06T12:19:46 #kisslinux Anyone had this error when building the latest nodejs? - ninja: invalid pool depth '15.93603515625' 2020-03-06T14:04:09 #kisslinux dylanaraps: haha fuck yeah, it's not pure (uses awk twice and bc once) but I've got a working POSIX sh build_OID_registry 2020-03-06T14:05:42 #kisslinux now it needs a ton of cleanup lol 2020-03-06T14:11:09 #kisslinux http://ix.io/2dxd 2020-03-06T14:32:20 #kisslinux E5ten: Nice! 2020-03-06T14:34:22 #kisslinux Someone send a message, I need to test birch. ;) 2020-03-06T14:34:22 #kisslinux jedavies: I can't reproduce the nodejs issue. 2020-03-06T14:34:22 #kisslinux Hm 2020-03-06T14:34:33 #kisslinux test 2020-03-06T14:34:55 #kisslinux Send another 2020-03-06T14:34:59 #kisslinux test2 2020-03-06T14:35:02 #kisslinux Thanks 2020-03-06T14:35:49 #kisslinux brb 2020-03-06T14:37:28 #kisslinux _o/ 2020-03-06T14:37:31 #kisslinux ello 2020-03-06T14:37:42 #kisslinux I have a working word wrapper 2020-03-06T14:38:11 #kisslinux brb 2 secs 2020-03-06T14:39:02 #kisslinux I've swapped to formatting text post-wrap 2020-03-06T14:39:09 #kisslinux So it's stored as plain-text 2020-03-06T14:39:24 #kisslinux I've also rewritten the wrapper using a different method 2020-03-06T14:39:27 #kisslinux It's really neat 2020-03-06T14:50:20 #kisslinux o/ 2020-03-06T14:50:25 #kisslinux This is nice now 2020-03-06T15:05:41 #kisslinux $(echo lets test birch security) 2020-03-06T15:06:10 #kisslinux `ls` 2020-03-06T15:25:20 #kisslinux adamantium: test with some formatting sequence 2020-03-06T15:25:59 #kisslinux i cant even get birch to work, i am not smart enough 2020-03-06T15:26:10 #kisslinux the connection "times out" for me 2020-03-06T16:27:48 #kisslinux dylanaraps: http://ix.io/2dxR this is the latest version, do you see any opportunities to simplify it (or even just make look it look less shitty)? 2020-03-06T17:04:40 #kisslinux http://ix.io/2dxY newer version 2020-03-06T17:13:54 #kisslinux http://ix.io/2dy4 slightly newer, btw instead of taking a second arg like the first one it just outputs to stdout 2020-03-06T17:14:14 #kisslinux actually now that I think about it I can just remove all the arg handling stuff if I just make it take stdin instead of reading input from a file arg 2020-03-06T17:14:17 #kisslinux gonna do that 2020-03-06T17:17:00 #kisslinux http://ix.io/2dy5 2020-03-06T18:15:10 #kisslinux dylanaraps: ok here's a patch to switch the perl script to the sh one (and the necessary Makefile modification) http://ix.io/2dyn so you can link this in wherever would make sense and kiss will be entirely buildable without perl 2020-03-06T18:16:54 #kisslinux I guess this would be worth submitting upstream but ugh maybe later lol 2020-03-06T19:10:54 #kisslinux dylanaraps: Btw is scrolling up in birch supposed to work or does that depend on the terminal 2020-03-06T19:11:53 #kisslinux adamantium: I've had the same issue but I don't know what fixed it 2020-03-06T19:26:25 #kisslinux dylanaraps, I've just uupdated yet I'm still seeing some QUIT's being ignore by birch 2020-03-06T19:27:04 #kisslinux s/uupdated/updated birch/g 2020-03-06T20:03:35 #kisslinux o/ 2020-03-06T20:03:45 #kisslinux E5ten: Thanks for the script 2020-03-06T20:06:00 #kisslinux I'm happy I thought of putting all the different arrays with corresponding elements at the same indices into "$@" and : delimiting them lol 2020-03-06T20:06:56 #kisslinux > if [ "$((i + 1))" -ne "$argc" ] && 2020-03-06T20:07:01 #kisslinux That's not valid is it??? 2020-03-06T20:07:08 #kisslinux Oh 2020-03-06T20:07:10 #kisslinux I missed the then 2020-03-06T20:07:16 #kisslinux That's a chunky if 2020-03-06T20:07:24 #kisslinux :P 2020-03-06T20:07:34 #kisslinux Really nice work 2020-03-06T20:07:42 #kisslinux yeah lol, not a very readable script 2020-03-06T20:07:43 #kisslinux or at all 2020-03-06T20:08:40 #kisslinux dylanaraps: see logs 2020-03-06T20:08:40 #kisslinux please send any recs you might have for working better or shorter or just cleanup 2020-03-06T20:08:56 #kisslinux kiedtl: I did 2020-03-06T20:09:01 #kisslinux ah ok 2020-03-06T20:09:07 #kisslinux I'll work on it once the new word wrapper is in master 2020-03-06T20:09:29 #kisslinux It's a tiny bit slow still :( 2020-03-06T20:10:09 #kisslinux btw, posting "s///g" has no effect unless a space is typed first 2020-03-06T20:10:27 #kisslinux s/test/test 2020-03-06T20:10:32 #kisslinux I know 2020-03-06T20:10:45 #kisslinux ok :) 2020-03-06T20:11:09 #kisslinux Fixed 2020-03-06T20:11:51 #kisslinux E5ten: set -- $1 2020-03-06T20:11:56 #kisslinux I'd first disable globbing 2020-03-06T20:12:15 #kisslinux the strings are guaranteed to be safe by the input file format 2020-03-06T20:12:24 #kisslinux Ah 2020-03-06T20:12:26 #kisslinux Good then 2020-03-06T20:12:27 #kisslinux but I guess I can just globally disable globbing cuz it's not used anywhere 2020-03-06T20:12:41 #kisslinux If it disables the globbing code itself it may make it faster 2020-03-06T20:12:50 #kisslinux (the globbing code in the shell) 2020-03-06T20:13:00 #kisslinux Also: name="${line#*_}" 2020-03-06T20:13:05 #kisslinux Quotes aren't needed for these 2020-03-06T20:13:13 #kisslinux Just a nitpick though 2020-03-06T20:13:21 #kisslinux I know I just like quotes lol, but fine I'll remove 2020-03-06T20:14:42 #kisslinux Looks fine to me overall 2020-03-06T20:17:11 #kisslinux I should probably replace some of the usage of meaningless letter variables with slightly more descriptive names, like not for the variable in "for " but for other temporary variables 2020-03-06T20:32:03 #kisslinux Yeah 2020-03-06T20:34:18 #kisslinux brb 2 secs 2020-03-06T20:44:21 #kisslinux help 2020-03-06T20:44:21 #kisslinux birch help 2020-03-06T20:44:55 #kisslinux -s 2020-03-06T20:45:03 #kisslinux birch -s 2020-03-06T20:45:05 #kisslinux clear 2020-03-06T20:45:10 #kisslinux -h 2020-03-06T20:45:24 #kisslinux Hello 2020-03-06T20:46:02 #kisslinux Hey just trying to figure this out 2020-03-06T20:46:13 #kisslinux stumbling haha 2020-03-06T20:46:21 #kisslinux The commands all start with / 2020-03-06T20:46:34 #kisslinux oh shoot thanks 2020-03-06T20:46:40 #kisslinux Have a look at the README for a description of each one 2020-03-06T20:46:57 #kisslinux Thanks! 2020-03-06T20:47:29 #kisslinux Having a bit of trouble with the install process 2020-03-06T20:47:48 #kisslinux But I guess something's working 2020-03-06T20:57:09 #kisslinux dylanaraps: I ran into people running pfetch on Bedrock who are confused about their distro. Looking at pfetch's code and comments, there seems to be reluctance to special case distros, and Bedrock is an unusual situation which will need special casing. Before I try to figure out a patch to upstream, I figured I should check with you about the possibility of Bedrock being granted an exception. 2020-03-06T22:51:48 #kisslinux evening, noob question: why language shell not work at login but if su - its work? 2020-03-06T22:53:00 #kisslinux i add /etc/profile string loadkmap < /usr/... 2020-03-06T22:54:09 #kisslinux same string for my user in ~/.profile 2020-03-06T22:54:24 #kisslinux why at boot login from user dont work ?