2021-04-27T01:21:44 #kisslinux so, turns out, I made a mistake 2021-04-27T01:22:00 #kisslinux and forgot that shell arithmetic isn't capable of floating-point operations 2021-04-27T01:22:04 #kisslinux gg 2021-04-27T01:22:20 #kisslinux computers 100 2021-04-27T01:22:35 #kisslinux pipe IO to bc? 2021-04-27T01:22:41 #kisslinux yeah, that's what I'm doing 2021-04-27T01:22:54 #kisslinux just about got the revised version working 2021-04-27T01:23:03 #kisslinux should be... slightly better than the earlier monstrosity. 2021-04-27T01:23:05 #kisslinux nice 2021-04-27T01:24:17 #kisslinux midfavila: whatre you trying to do? 2021-04-27T01:24:49 #kisslinux writing a function in shell to calculate the system's free memory as a percentage 2021-04-27T01:25:15 #kisslinux oh nice 2021-04-27T01:25:21 #kisslinux are you parsing /proc/meminfo? 2021-04-27T01:25:24 #kisslinux no 2021-04-27T01:25:30 #kisslinux this is using free 2021-04-27T01:25:42 #kisslinux you could always convert out to kB and then calc %? 2021-04-27T01:25:46 #kisslinux ah so you're just indirectly parsing /proc/meminfo then :) 2021-04-27T01:25:52 #kisslinux well, yeah, sure. 2021-04-27T01:25:57 #kisslinux whatever way you want to do it. 2021-04-27T01:26:09 #kisslinux it's basically already done 2021-04-27T01:26:24 #kisslinux using sed for it? 2021-04-27T01:26:26 #kisslinux printf "scale=2;100-$(free -m | sed -e 's/ */ /g' -e '2!d' | cut -d ' ' -f3)/$(free -m | sed -e 's/ */ /g' -e '2!d' | cut -d ' ' -f2)*100"|bc 2021-04-27T01:26:28 #kisslinux yes 2021-04-27T01:26:30 #kisslinux extensively 2021-04-27T01:26:39 #kisslinux i spent today learning how to script in sed 2021-04-27T01:26:41 #kisslinux but mid, you know that you can just use awk!!!! 2021-04-27T01:26:47 #kisslinux uwu 2021-04-27T01:26:56 #kisslinux awk's girth intimidates me 2021-04-27T01:27:03 #kisslinux too much of a unit 2021-04-27T01:28:29 #kisslinux there's definitely a more efficient way to do this, probably involving procfs 2021-04-27T01:28:33 #kisslinux that's how my last function worked 2021-04-27T01:28:38 #kisslinux but this gave me an excuse to tinker with sed 2021-04-27T01:28:49 #kisslinux hmm i'm getting syntax errors 2021-04-27T01:28:51 #kisslinux on the line you send 2021-04-27T01:29:02 #kisslinux from the shell or your bc? 2021-04-27T01:29:16 #kisslinux bc I believe 2021-04-27T01:29:22 #kisslinux "(standard_in) 1: syntax error" 2021-04-27T01:29:29 #kisslinux weird. 2021-04-27T01:29:42 #kisslinux works using my bc implementation. are you using GNU bc? 2021-04-27T01:30:03 #kisslinux yes let me try with busybox 2021-04-27T01:30:09 #kisslinux busybox should work 2021-04-27T01:30:12 #kisslinux ah yeah that fixed it 2021-04-27T01:30:15 #kisslinux i believe it's a derivation of the bc I use 2021-04-27T01:31:15 #kisslinux i'm getting an unexpected result though... 2021-04-27T01:31:22 #kisslinux ? 2021-04-27T01:31:26 #kisslinux its always 76.00 2021-04-27T01:31:35 #kisslinux which isn't correct 2021-04-27T01:31:41 #kisslinux that's weird. probably something to do with your implementation of free 2021-04-27T01:31:49 #kisslinux its busybox free 2021-04-27T01:31:56 #kisslinux i don't use busybox free 2021-04-27T01:32:13 #kisslinux so I don't know if it outputs in the same way as procps-ng free 2021-04-27T01:32:23 #kisslinux it does 2021-04-27T01:32:27 #kisslinux exactly the same pretty much 2021-04-27T01:32:34 #kisslinux then it should be working... hmm. 2021-04-27T01:32:35 #kisslinux I have both in front of me 2021-04-27T01:32:53 #kisslinux FWIW, this is the same thing in awk 2021-04-27T01:32:55 #kisslinux free | awk 'NR==2 {print $4/$2*100 "% free"}' 2021-04-27T01:33:39 #kisslinux yeah, awk is cool 2021-04-27T01:33:45 #kisslinux i really do need to learn about it 2021-04-27T01:33:56 #kisslinux learning the basics isn't that hard 2021-04-27T01:34:00 #kisslinux the basics are all that i know 2021-04-27T01:34:00 #kisslinux although uh, just to let you know, that script I posted does work 2021-04-27T01:34:03 #kisslinux at least on my system 2021-04-27T01:34:08 #kisslinux hmm weird 2021-04-27T01:34:28 #kisslinux it's able to correctly report memory usage under load during a 46-core llvm compile 2021-04-27T01:34:40 #kisslinux wow you really just had to flex with the 46 cores 2021-04-27T01:34:47 #kisslinux i could have gone with 48 2021-04-27T01:34:59 #kisslinux but you weren't worth my full power 2021-04-27T01:35:36 #kisslinux ...yeah, this is tracking the available memory properly... it worked on a GNU system too 2021-04-27T01:36:45 #kisslinux how odd 2021-04-27T01:37:00 #kisslinux weird just outputs 100 for me 2021-04-27T01:37:04 #kisslinux * necromansy shrugs 2021-04-27T01:37:09 #kisslinux NOTABUG WONTFIX 2021-04-27T01:37:24 #kisslinux on my system, both in a kiss chroot, and on arch, using procps-ng free, busybox free, gnu bc, and busybox bc, it always outputs either 76 or 77 2021-04-27T01:37:42 #kisslinux that makes me think it's something to do with your free implementation 2021-04-27T01:38:07 #kisslinux https://envs.sh/zb.txt 2021-04-27T01:38:10 #kisslinux this is my free output 2021-04-27T01:38:19 #kisslinux its the exact same with busybox and procps-ng 2021-04-27T01:38:34 #kisslinux hm... 2021-04-27T01:38:57 #kisslinux then I'm not sure 2021-04-27T01:40:28 #kisslinux acheam: your awk script works a charm for me fyi 2021-04-27T01:40:32 #kisslinux :) 2021-04-27T01:40:32 #kisslinux so i wonder whats up 2021-04-27T01:40:38 #kisslinux the awk works on my system as well 2021-04-27T01:40:50 #kisslinux i don't think it could be my sed... 2021-04-27T01:40:55 #kisslinux I have it set to GNU 2021-04-27T01:40:57 #kisslinux im using busybox free and bc 2021-04-27T01:41:03 #kisslinux fate spun that midfavila's system would work specifically with this script 2021-04-27T01:41:05 #kisslinux it must be bc then 2021-04-27T01:41:20 #kisslinux well it does outright break on GNU bc 2021-04-27T01:41:26 #kisslinux even in posix mode 2021-04-27T01:41:38 #kisslinux so yeah that must be it 2021-04-27T01:42:06 #kisslinux clearly you're just using an inferior bc 2021-04-27T01:42:08 #kisslinux smh 2021-04-27T01:43:02 #kisslinux I get "error in numeric constant" and then some "syntax error"s 2021-04-27T01:43:29 #kisslinux what bc implementation are you using mid? 2021-04-27T01:43:32 #kisslinux ah, you know what, it's the scale=2 2021-04-27T01:43:36 #kisslinux that's gotta be it 2021-04-27T01:43:51 #kisslinux one sec, I'll post the link to the source 2021-04-27T01:44:12 #kisslinux https://git.yzena.com/gavin/bc 2021-04-27T01:44:12 #kisslinux lol mid found his bc implementation in some rancid corner of the internet 2021-04-27T01:44:16 #kisslinux yes, actually 2021-04-27T01:44:21 #kisslinux 100% factual 2021-04-27T01:45:05 #kisslinux If I remove the scale, I just get 100 2021-04-27T01:45:08 #kisslinux every time 2021-04-27T01:45:32 #kisslinux well, really 0 2021-04-27T01:45:36 #kisslinux if you remove the 100-, and *100 2021-04-27T01:45:37 #kisslinux 0 makes sense 2021-04-27T01:45:59 #kisslinux the 100-$(whatever) is because the $(whatever) calculates the percentage 2021-04-27T01:46:02 #kisslinux and multiplies it by 100 2021-04-27T01:46:07 #kisslinux so that it can be dealt with as a whole number 2021-04-27T01:46:11 #kisslinux then subtracts that from 100 2021-04-27T01:46:21 #kisslinux meaning a scale of at least two is mandatory 2021-04-27T01:47:11 #kisslinux otherwise it can't multiply the floating point number 2021-04-27T01:51:37 #kisslinux could probably just multiply both sides by 100, do stuff, then divide the result by 100... 2021-04-27T03:37:57 #kisslinux Hi 2021-04-27T03:43:59 #kisslinux hey testuser_[m] 2021-04-27T11:20:33 #kisslinux is there anyone here who's experienced with laptop screen flickering issues? it's really difficult to find info online, i feel like i am getting desperate 2021-04-27T11:29:33 #kisslinux i know this is not the place to ask my question but i really don't know what to do at this point 2021-04-27T11:45:35 #kisslinux /bar buflist toggle 2021-04-27T11:45:39 #kisslinux fuck 2021-04-27T12:47:42 #kisslinux https://ariadne.space/2021/03/25/lets-build-a-new-service-manager-for-alpine/ 2021-04-27T12:48:18 #kisslinux >Our plan is to build a supervision-first service manager that consumes and reacts to events, using declarative unit files similar to systemd, so that administrators who are familiar with systemd can easily learn the new system. 2021-04-27T13:08:27 #kisslinux cringe 2021-04-27T13:08:36 #kisslinux soystemd users should not be catered to 2021-04-27T13:08:44 #kisslinux they should be bullied with extreme prejudice 2021-04-27T13:10:02 #kisslinux and they're one of the anti-RMS types. even more reason to disregard their opinion 2021-04-27T13:11:28 #kisslinux oh i kind of like the effort actually. of the systemd things, i don't mind the service unit files 2021-04-27T13:11:49 #kisslinux if they're already using openrc 2021-04-27T13:11:51 #kisslinux why don't they just 2021-04-27T13:11:52 #kisslinux you know 2021-04-27T13:11:53 #kisslinux hear hear 2021-04-27T13:11:56 #kisslinux start maintaining 2021-04-27T13:12:04 #kisslinux instead of writing a new service manager 2021-04-27T13:12:07 #kisslinux dev is more fun than those lowly maintainers 2021-04-27T13:12:25 #kisslinux okay, but do they want to be effective, or do they want to be insufferable hipsters 2021-04-27T13:12:35 #kisslinux they could be both! 2021-04-27T13:12:43 #kisslinux not on the same topic 2021-04-27T13:12:46 #kisslinux but broadly, yes 2021-04-27T13:13:03 #kisslinux also, if the base is s6, it's already solid, they just need to revamp the s6-rc part 2021-04-27T13:13:22 #kisslinux isn't s6 a bootloader? 2021-04-27T13:13:24 #kisslinux i've never used it 2021-04-27T13:13:30 #kisslinux i'll be curious if that's what they end up doing, and if that's why they brought Bercot in 2021-04-27T13:13:40 #kisslinux no 2021-04-27T13:13:53 #kisslinux https://skarnet.org/software/s6/ 2021-04-27T13:14:03 #kisslinux but regardless, if it ends up being something that transitions people off of systemd then fine with me 2021-04-27T13:14:50 #kisslinux >s6 requires gmake 2021-04-27T13:14:57 #kisslinux smh 2021-04-27T13:15:10 #kisslinux well daemontools-based systems is always good for me regardless 2021-04-27T13:15:41 #kisslinux i still think hummingbird and sysmgr are a solid choice. that or the so-called BSD-style sysvinit 2021-04-27T13:15:45 #kisslinux ala CRUX and Slackware 2021-04-27T13:16:34 #kisslinux sysmgr has a daemontools-style scripts 2021-04-27T13:16:54 #kisslinux do either of them do service dependencies? like requires/wants? 2021-04-27T13:17:02 #kisslinux sysmgr has a way of handling that 2021-04-27T13:17:17 #kisslinux but I've never looked into or bothered with it 2021-04-27T13:18:07 #kisslinux ominous_anonymou: I personally think it's a bit crude, just like runit's check script before running a service 2021-04-27T13:18:21 #kisslinux but instead of sv check, it's sysmgr-depends iirc 2021-04-27T13:18:43 #kisslinux yup 2021-04-27T13:19:56 #kisslinux ...hmmmm... on the topic of inits and service managers, I should rewrite my hummingbird scripts to be more like sysvinit 2021-04-27T13:20:15 #kisslinux no need to manually bring down and re-initialize interfaces that way 2021-04-27T13:20:32 #kisslinux isn't hummingbird a glorified sinit anyway 2021-04-27T13:20:47 #kisslinux i've heard it compared to sinit, but I've never used sinit 2021-04-27T13:20:51 #kisslinux so I can't tell you honestly 2021-04-27T13:21:23 #kisslinux tl;dr it has a set of three "runlevel" scripts that are run in sequence 2021-04-27T13:21:33 #kisslinux the first checks filesystems and mounts disks, 2021-04-27T13:21:37 #kisslinux the second does housekeeping tasks, 2021-04-27T13:22:07 #kisslinux and the third will bring up your gettys and invoke scripts under /etc/hummingbird.d if their name matches *.boot 2021-04-27T13:22:14 #kisslinux and... that's it. 2021-04-27T13:23:17 #kisslinux i use hummingbird to fire off one-time commands like initial clock sync, my service manager, interface configuration, etc, and then sysmgr handles my display manager, ssh, cron, w/e 2021-04-27T13:23:23 #kisslinux it's pretty comfy 2021-04-27T13:23:28 #kisslinux so, two stage1 scripts and one stage2 script? since there's no standardized way of creating a "service" I feel like a "hummingbird runlevel" can basically be a sinit rc.init 2021-04-27T13:23:48 #kisslinux well, hummingbird isn't intended to manage services 2021-04-27T13:23:56 #kisslinux so is sinit 2021-04-27T13:24:19 #kisslinux * midfavila shrugs 2021-04-27T13:24:49 #kisslinux oh, on the topic of hummingbird, 2021-04-27T13:25:08 #kisslinux i forked the package under community and patched the source so that it properly reaps zombies 2021-04-27T13:25:28 #kisslinux sed -i 's/signal(SIGINT, handler);/signal(SIGINT, handler);nsignal(SIGCHLD, handler);/' hummingbird.c 2021-04-27T13:25:42 #kisslinux in case anyone needs this in the future 2021-04-27T13:26:00 #kisslinux all the rest of the code seems to be in place for reaping 2021-04-27T13:26:00 #kisslinux just send a patch to the upstream 2021-04-27T13:26:08 #kisslinux dev is MIA and I don't use github 2021-04-27T13:26:10 #kisslinux and also, 2021-04-27T13:26:11 #kisslinux unless it's a secret club ala mandoc 2021-04-27T13:26:15 #kisslinux i was locked out of my account 2021-04-27T13:26:19 #kisslinux and lost the recovery email 2021-04-27T13:26:20 #kisslinux lmao 2021-04-27T13:28:06 #kisslinux oh, actually, dilyn, you use hummingbird right? 2021-04-27T13:28:11 #kisslinux https://github.com/Sweets/hummingbird/issues/15 is this the same issue mid 2021-04-27T13:28:27 #kisslinux yes, I'm the friend mentioned 2021-04-27T13:28:28 #kisslinux lmao 2021-04-27T13:28:50 #kisslinux oh lol i should've known at the FVWM mention 2021-04-27T13:29:05 #kisslinux indeed you should have 2021-04-27T13:29:18 #kisslinux speaking of which, 2021-04-27T13:29:24 #kisslinux wow, fvwm3 is kind of based 2021-04-27T13:29:38 #kisslinux they switched to randr instead of xinerama 2021-04-27T13:29:46 #kisslinux so now I can have non-square X root windows 2021-04-27T13:29:53 #kisslinux which is *fantastic* 2021-04-27T13:31:48 #kisslinux did you figure out your config issue from the other day? 2021-04-27T13:32:24 #kisslinux with the script? yeah, I tinkered with it some more and realized that by multiplying one side it results in only using whole numbers 2021-04-27T13:32:28 #kisslinux meaning bc isn't necessary 2021-04-27T13:32:39 #kisslinux which is nice 2021-04-27T13:34:46 #kisslinux however, what is not nice is that my taskbar module is still non-functional. this is displeasing, but not entirely unexpected 2021-04-27T13:35:51 #kisslinux so i've just compiled me a kernel, and it says i've gotta rename it to the kernel version. can this be any string i want, and is it even totally necessary? 2021-04-27T13:36:05 #kisslinux depends on the bootloader 2021-04-27T13:36:27 #kisslinux lilo expects it to be the string from the /etc/lilo.conf, grub expects it to be vmlinuz-something, syslinux doesn't give a shit, etc 2021-04-27T13:36:48 #kisslinux well im probably gonna use lilo anyway 2021-04-27T13:36:54 #kisslinux personally I name mine based on revisions 2021-04-27T13:37:07 #kisslinux current kernel is vmlinuz-stable, last gen is vmlinuz-old, next-gen is vmlinuz-unstable 2021-04-27T13:37:25 #kisslinux old is used for a recovery boot, stable is for daily use, unstable is for R&D 2021-04-27T13:37:25 #kisslinux i don't think i'm gonna be changing which version of the kernel i'm using, so it's not really a big deal for me to organise having multiple vmlinuz'es 2021-04-27T13:37:44 #kisslinux oh, when I say revisions, I don't mean newer kernel versions 2021-04-27T13:37:57 #kisslinux huh wdym then? 2021-04-27T13:37:59 #kisslinux I mean newly compiled kernels in general 2021-04-27T13:38:01 #kisslinux so like 2021-04-27T13:38:06 #kisslinux ohhhh ok 2021-04-27T13:38:08 #kisslinux 5.11.11 is what most of my systems are on rn 2021-04-27T13:38:24 #kisslinux if I want to add a new driver, or tweak security or memory management, whatever, that becomes -unstable 2021-04-27T13:38:31 #kisslinux and when I'm satisfied with it, it becomes the new -stable 2021-04-27T13:38:37 #kisslinux and the current -stable becomes the new -old 2021-04-27T13:38:48 #kisslinux and the current -old is banished to the voice 2021-04-27T13:38:52 #kisslinux s/voice/void/ 2021-04-27T13:38:52 #kisslinux and the current -old is banished to the void 2021-04-27T13:38:54 #kisslinux hmm well i'm in a vm so i don't think i'll be changing around the drivers much either 2021-04-27T13:38:56 #kisslinux midfavila: thanks for the reaping fix, i've noticed this with hummingbird as well but never got around to creating an issue for it and just hoped i wouldn't run out of processes ;d 2021-04-27T13:39:06 #kisslinux np! 2021-04-27T13:39:22 #kisslinux midfavila: anyway thanks for the infos 2021-04-27T13:39:28 #kisslinux it was really nice to see my twenty five pages of k&r experience actually be useful 2021-04-27T13:39:39 #kisslinux i'm just glad it works 2021-04-27T13:39:46 #kisslinux nice 2021-04-27T13:39:57 #kisslinux but not running out of PIDs is also nice. i lost a two and a half week uptime once because of it 2021-04-27T13:40:08 #kisslinux *not* impressed by that 2021-04-27T13:40:58 #kisslinux ...welp, time to implement a settings panel for my config... this is gonna be a pain 2021-04-27T13:41:48 #kisslinux gotta convert all my wallpapers to png, because fvwm doesn't support jpg 2021-04-27T13:41:57 #kisslinux then I have to prototype the UI 2021-04-27T13:42:07 #kisslinux then I have to write the backend, then the UI itself... 2021-04-27T13:42:08 #kisslinux bluh 2021-04-27T13:42:29 #kisslinux this is what FVWM does to you 2021-04-27T13:43:06 #kisslinux never used FVWM so no idea what the capabilities are, but i've been playing around with eww for stuff like that and it's pretty neat 2021-04-27T13:43:26 #kisslinux well, FVWM can copy almost any GUI 2021-04-27T13:43:30 #kisslinux eww is nice 2021-04-27T13:43:30 #kisslinux to a tee 2021-04-27T13:43:39 #kisslinux prot has great configs for it 2021-04-27T13:43:50 #kisslinux the only times I've had difficulty in getting FVWM to do what I want is getting it to be more akin to NeXT 2021-04-27T13:43:55 #kisslinux whats eww 2021-04-27T13:44:03 #kisslinux testuser_[m]: https://github.com/elkowar/eww 2021-04-27T13:44:06 #kisslinux emacs web wowser? 2021-04-27T13:44:11 #kisslinux Oh I was thinking of the emacs web wowser 2021-04-27T13:44:11 #kisslinux lol 2021-04-27T13:44:25 #kisslinux midfavila: can it emulate Rio? 2021-04-27T13:44:36 #kisslinux my answer is 2021-04-27T13:44:41 #kisslinux yes, kind of 2021-04-27T13:44:50 #kisslinux the only thing it can't copy is rio's, uh 2021-04-27T13:44:58 #kisslinux ...idiosyncratic method of window placement 2021-04-27T13:45:06 #kisslinux also 2021-04-27T13:45:07 #kisslinux >rust 2021-04-27T13:45:09 #kisslinux into the trash 2021-04-27T13:45:11 #kisslinux it gives it character! 2021-04-27T13:45:22 #kisslinux don't get me wrong 2021-04-27T13:45:23 #kisslinux rio is nice 2021-04-27T13:45:28 #kisslinux but it's *weird* 2021-04-27T13:45:34 #kisslinux yeah lol 2021-04-27T13:45:41 #kisslinux p9's mouse focus really isn't for me tbh 2021-04-27T13:45:44 #kisslinux for daily use that is 2021-04-27T13:45:49 #kisslinux sloppy focus is fantastic 2021-04-27T13:45:49 #kisslinux but for experimenting it is awesome 2021-04-27T13:45:51 #kisslinux what the fuck are you on about 2021-04-27T13:45:57 #kisslinux ...ohwait 2021-04-27T13:45:59 #kisslinux never mind 2021-04-27T13:46:04 #kisslinux you meant in terms of UI 2021-04-27T13:46:06 #kisslinux i was abusing sway's ipc to emulate some rio like features (hence where I first ran into problems with hummingbird not reaping zombies) 2021-04-27T13:46:08 #kisslinux yes midfavila 2021-04-27T13:46:11 #kisslinux * midfavila facedesks 2021-04-27T13:46:19 #kisslinux kqz: why not wio? 2021-04-27T13:46:25 #kisslinux >wayland 2021-04-27T13:46:34 #kisslinux wio is pretty much dead ;d 2021-04-27T13:46:37 #kisslinux oi hes using sway already 2021-04-27T13:46:43 #kisslinux also 2021-04-27T13:46:44 #kisslinux kqz: does that matter? 2021-04-27T13:46:44 #kisslinux neat, but drew has lost interest i think 2021-04-27T13:46:55 #kisslinux isn't it pretty much done? 2021-04-27T13:47:01 #kisslinux https://ytprivate.com/watch?v=IluRBvnYMoY 2021-04-27T13:47:03 #kisslinux yeah he hasn't worked on any wayland stuff recently 2021-04-27T13:47:04 #kisslinux sotd suggestion 2021-04-27T13:47:14 #kisslinux will listen to it later 2021-04-27T13:47:15 #kisslinux it's missing support for a lot of protocols and features 2021-04-27T13:47:17 #kisslinux also also 2021-04-27T13:47:22 #kisslinux just checked my mailbox 2021-04-27T13:47:26 #kisslinux wouldn't be hard to plug them in, but I really like sway's ipc as well 2021-04-27T13:47:34 #kisslinux kqz: oh okay 2021-04-27T13:48:04 #kisslinux and the guy running for mayor from my precinct lists that he's a second-degree judoka 2021-04-27T13:48:07 #kisslinux which is amazing 2021-04-27T13:48:18 #kisslinux we truly live in a judocracy 2021-04-27T13:48:20 #kisslinux instantvote 2021-04-27T13:48:35 #kisslinux fr tho 2021-04-27T13:48:45 #kisslinux "vote for me or I throw you into oblivion" 2021-04-27T13:49:20 #kisslinux oh and I think the biggest issue with wio is that the when spawning new windows via cage, you lose clipboard support between windows 2021-04-27T13:49:31 #kisslinux because nested compositors can't access the host compositors clipboard ;d 2021-04-27T13:49:32 #kisslinux I wouldn't mind learning judo. I did a little bit of jujutsu for a while, that was fun 2021-04-27T13:50:19 #kisslinux how're those security features kqz :^) 2021-04-27T13:50:45 #kisslinux well it's not really a "muh security" thing, it's just there's no protocol established yet for such a thing 2021-04-27T13:51:07 #kisslinux time to write a new standard then! 2021-04-27T13:51:20 #kisslinux gonna stick with based trad Xorg 2021-04-27T13:51:22 #kisslinux thx 2021-04-27T13:51:27 #kisslinux * acheam links that relevant xkcd 2021-04-27T13:51:46 #kisslinux i actually found a bunch of old NEC docs detailing low-level X programming the other day 2021-04-27T13:51:51 #kisslinux I need to read them. 2021-04-27T13:52:08 #kisslinux even if they're mostly for R6, they should still by and large be relevant for R7 2021-04-27T13:54:07 #kisslinux who knows, once I become maybe-slightly-not-really-competent at programming, I'll be able to start working on FVWM. they're reimplementing window tabbing, which is exciting 2021-04-27T13:54:37 #kisslinux be nice to write my own modules to replace the built-in toolkit with GTK or, even better, FLTK, too 2021-04-27T13:56:12 #kisslinux just use the tabbing module for rxvt, all you need is perl 2021-04-27T13:56:21 #kisslinux that's why I don't want it 2021-04-27T13:56:24 #kisslinux rxvt is bloat 2021-04-27T13:56:46 #kisslinux i want to write my own terminal eventually, because even XTerm has a lot of crap that I don't want 2021-04-27T13:57:09 #kisslinux i think foot alone has definitely solidified my staying on wayland 2021-04-27T13:57:18 #kisslinux such a great terminal 2021-04-27T13:57:25 #kisslinux does changing your wallpaper in wayland still use like 80mb of memory 2021-04-27T13:58:05 #kisslinux i use mpvpaper for video wallpapers so resource usage is a moot point for me regarding that stuff ;d 2021-04-27T13:58:22 #kisslinux unironically cringe 2021-04-27T13:58:42 #kisslinux hopefully you're not using a laptop 2021-04-27T13:59:09 #kisslinux actually have it set up on both my desktop and my laptop lol 2021-04-27T13:59:29 #kisslinux i just found out i can also abuse mpv's ipc to generate a neat blur effect on focus 2021-04-27T13:59:48 #kisslinux * midfavila shrugs 2021-04-27T13:59:58 #kisslinux I tend to keep cosmetics on the down-low. 2021-04-27T14:00:09 #kisslinux Normally I don't even have dropshadows. 2021-04-27T14:00:22 #kisslinux Just server-side hardedge 2021-04-27T14:00:37 #kisslinux i like the cute and pretty 2021-04-27T14:00:50 #kisslinux grey is...... kind of cute 2021-04-27T14:00:58 #kisslinux and can be very pretty 2021-04-27T14:01:24 #kisslinux hah, i mean sure anything can be cute ;d 2021-04-27T14:01:41 #kisslinux i also did a very **weeb** grey rice a while ago 2021-04-27T14:01:50 #kisslinux was it tasteful 2021-04-27T14:01:58 #kisslinux or was it the usual hentai loli garbage 2021-04-27T14:02:06 #kisslinux because 99% of the time it seems to be the latter 2021-04-27T14:02:39 #kisslinux #000000 ftw 2021-04-27T14:02:46 #kisslinux go away emo 2021-04-27T14:02:56 #kisslinux 2008 wants their vantablack bodypaint back 2021-04-27T14:03:10 #kisslinux make this your background https://i.imgur.com/A0JUTQw.jpg 2021-04-27T14:03:23 #kisslinux no thanks 2021-04-27T14:03:27 #kisslinux i'd like to avoid nausea 2021-04-27T14:03:44 #kisslinux my rice right now: https://i.imgur.com/QbIlB0Q.png 2021-04-27T14:03:55 #kisslinux wowowoowowowowoowowowowowowowowow 2021-04-27T14:03:58 #kisslinux so MINIMALIST 2021-04-27T14:04:07 #kisslinux here's your reddit gold, sir 2021-04-27T14:04:40 #kisslinux hah found it, (warning big picture) https://0x0.st/-mGC.png 2021-04-27T14:04:42 #kisslinux wow never expected my most updooted post to be just my humble rice! Thank you kind anonymous reddotor 2021-04-27T14:05:44 #kisslinux http://0x0.st/-mDr.png 2021-04-27T14:05:50 #kisslinux my system is kind of boring right now 2021-04-27T14:06:12 #kisslinux still working on the info script, had to disable the taskbar because of jank 2021-04-27T14:06:18 #kisslinux are those..gradients!? ;d 2021-04-27T14:06:22 #kisslinux flat are riot! 2021-04-27T14:06:28 #kisslinux s/are/or/g 2021-04-27T14:06:28 #kisslinux flat or riot! 2021-04-27T14:06:36 #kisslinux i like the unobtrusive time and date kqz 2021-04-27T14:06:39 #kisslinux how can one person be so incredibly unbased 2021-04-27T14:06:42 #kisslinux >flatshit 2021-04-27T14:06:47 #kisslinux >vidya desktop on laptop 2021-04-27T14:07:06 #kisslinux hahaha, i think our tastes are probably polar opposites ;d 2021-04-27T14:07:06 #kisslinux bevels and gradients are where it's at 2021-04-27T14:07:13 #kisslinux just has to be *tasteful* 2021-04-27T14:07:20 #kisslinux if you want to see some really awful FVWM configurations... 2021-04-27T14:07:25 #kisslinux ominous_anonymou: thanks, i later made a very long cutesy string wrapper around date that was like 50 characters long 2021-04-27T14:07:55 #kisslinux http://www.xwinman.org/screenshots/fvwm2-glen.jpg 2021-04-27T14:07:57 #kisslinux behold 2021-04-27T14:08:01 #kisslinux this is the power of FVWM 2021-04-27T14:08:20 #kisslinux bask in its... er... 2021-04-27T14:08:23 #kisslinux questionable pallette 2021-04-27T14:08:30 #kisslinux and far too many titlebuttons 2021-04-27T14:09:48 #kisslinux that rice you posted is... questionable, kqz. the grey one 2021-04-27T14:10:00 #kisslinux i can't into the massive borders or the low contrast 2021-04-27T14:10:24 #kisslinux hehe, yeah low contrast was the biggest motivation for that one 2021-04-27T14:10:31 #kisslinux there's no way it's a daily use thing 2021-04-27T14:10:42 #kisslinux just looking at it hurts my eyes >.< 2021-04-27T14:10:54 #kisslinux i used that for a while actually 2021-04-27T14:11:05 #kisslinux i love muh wasted pixels ;d 2021-04-27T14:11:20 #kisslinux nothing wrong with sacrificing some screen real estate for comfiness 2021-04-27T14:11:53 #kisslinux but comfiness generally also serves some practical function 2021-04-27T14:12:02 #kisslinux e.g denoting clearly where stuff ends 2021-04-27T14:12:14 #kisslinux gimme some thicc gaps 2021-04-27T14:12:19 #kisslinux this was my final setup up until btrfs attacked https://0x0.st/-mDX.png 2021-04-27T14:12:30 #kisslinux jesus CHRIST 2021-04-27T14:12:43 #kisslinux yeah that one's a bit much haha 2021-04-27T14:12:48 #kisslinux yeah we uh 2021-04-27T14:12:55 #kisslinux we definitely have polar opposite tastes in aesthetic 2021-04-27T14:12:57 #kisslinux hahahaha 2021-04-27T14:13:06 #kisslinux double polar for me 2021-04-27T14:13:11 #kisslinux http://toastytech.com/guis/qnx621about2.png 2021-04-27T14:13:14 #kisslinux this is my ideal GUI 2021-04-27T14:13:28 #kisslinux and I attempt to emulate it as much as possible with FVWM 2021-04-27T14:13:57 #kisslinux simple, clean, highly functional, with minimal, crisp styling 2021-04-27T14:14:05 #kisslinux perfection 2021-04-27T14:14:17 #kisslinux midfavila literally only wants one thing and its fucking disgusting 2021-04-27T14:14:17 #kisslinux that actually looks kind of nice 2021-04-27T14:14:21 #kisslinux dude 2021-04-27T14:14:23 #kisslinux QNX is based 2021-04-27T14:14:27 #kisslinux bar the bloat titlebars ;d 2021-04-27T14:14:36 #kisslinux it's a system five-based UNIX that runs a realtime microkernel 2021-04-27T14:14:50 #kisslinux and it comes with pkgsrc so you can use most standard packages 2021-04-27T14:15:04 #kisslinux (also it's owned by a canadian company so I'm slightly biased) 2021-04-27T14:15:47 #kisslinux i used to have a QNX theme for my setup, but it's been retired for some time now 2021-04-27T14:16:01 #kisslinux honestly im really enjoying the kiss package manager more than i ever did apt/yum/xbps/pacman/etc 2021-04-27T14:16:04 #kisslinux gotta write a configuration file so that it fits my theme format 2021-04-27T14:16:08 #kisslinux and yeah, kiss is really nice 2021-04-27T14:16:20 #kisslinux same ominous_anonymou 2021-04-27T14:16:21 #kisslinux i've been thinking of making a binary repository for myself 2021-04-27T14:16:27 #kisslinux and possibly the community 2021-04-27T14:16:27 #kisslinux makes me very sad when i have to dabble with those other ones at work ;d 2021-04-27T14:16:44 #kisslinux since I have a pretty beefy build system. might help if someone wanted to run KISS on like 2021-04-27T14:16:47 #kisslinux a t60 or something 2021-04-27T14:17:38 #kisslinux i've been thinking the same after going through and attempting to install kiss on a few single core VPSs 2021-04-27T14:17:42 #kisslinux midfavila, re your ugly ass pipeline to get memory usage, you can do it in pure shell too 2021-04-27T14:17:46 #kisslinux https://gist.github.com/aaronNGi/5aacadb072b356aab261e292a7be30e6#file-statusbar-sh-L147-L170 2021-04-27T14:17:48 #kisslinux already fixed it 2021-04-27T14:25:24 #kisslinux midfavila: what libc do you use? 2021-04-27T14:25:32 #kisslinux musl on laptop, glibc on desktop 2021-04-27T14:25:45 #kisslinux the nuegia browser, nor pale moon, will build against musl 2021-04-27T14:25:49 #kisslinux so itd be a glibc repo? 2021-04-27T14:25:52 #kisslinux i would do both 2021-04-27T14:25:56 #kisslinux ah nice 2021-04-27T14:26:07 #kisslinux it takes me like maybe five minutes to build a hardened, optimized llvm 2021-04-27T14:26:09 #kisslinux ngl idk how much I'd trust running your binaries on my computer 2021-04-27T14:26:22 #kisslinux well, if you don't want to, you don't have to 2021-04-27T14:26:27 #kisslinux hahaha 2021-04-27T14:27:03 #kisslinux wdym hardened midfavila 2021-04-27T14:27:44 #kisslinux well, you can use certain GCC flags to compile position-independent executables, or with stack-smashing protection, etc 2021-04-27T14:27:46 #kisslinux that kind of thing 2021-04-27T14:27:56 #kisslinux i've been experimenting with it on my laptop 2021-04-27T14:28:50 #kisslinux if I were to distribute binaries I'd probably also enable profile-guided optimization... but I don't know if that'd work across machines 2021-04-27T14:29:23 #kisslinux it will unless you use march=native 2021-04-27T14:29:38 #kisslinux cool, thanks for letting me know 2021-04-27T14:29:39 #kisslinux ah that reminds me i want to play around with clang's CFI 2021-04-27T14:30:13 #kisslinux was just going to use march=x86-64 anyway 2021-04-27T14:30:25 #kisslinux we don't *cater* to 32-bit peasants here 2021-04-27T14:30:51 #kisslinux yeah, i really wish 32-bit would disappear already 2021-04-27T14:31:13 #kisslinux it's the reason I stopped playing games on PC 2021-04-27T14:31:14 #kisslinux unironically 2021-04-27T14:31:28 #kisslinux i got so sick and tired of managing a multi-lib system to play games through steam that I gave up 2021-04-27T14:31:35 #kisslinux like 2021-04-27T14:31:50 #kisslinux yep, only reason i have a multilib chroot, the games i play dont even need them, steam itself does for whatever reason 2021-04-27T14:31:55 #kisslinux why do I need to basically double the size of my installed base system just to run a 32-bit binary that does nothing except load a 64-bit binary 2021-04-27T14:32:19 #kisslinux i'm just going to build proton for myself, then download cracked copies of all my games 2021-04-27T14:32:49 #kisslinux fuck DRM, I'm allowed a backup copy 2021-04-27T14:40:56 #kisslinux if i have enabled repository signing before, does anyone know how i would disable it ? 2021-04-27T14:43:07 #kisslinux did you check the install guide and/or wiki? they probably have a good jumping-off point 2021-04-27T14:43:59 #kisslinux git config merge.verifySignatures false 2021-04-27T14:45:11 #kisslinux nono i don't mean with git, i mean when trying to build a package and it says "checksum mismatch". 2021-04-27T14:45:36 #kisslinux midfavila: and that's true, i really do have to learn to rtfm before assuming nobody has written tfm 2021-04-27T14:45:49 #kisslinux and im looking right now havent found anything *so far* 2021-04-27T14:45:50 #kisslinux yabobay: thats a repo issue, and should be fixed upstream 2021-04-27T14:45:54 #kisslinux your download got corrupted then ? 2021-04-27T14:45:54 #kisslinux what package is it? 2021-04-27T14:46:00 #kisslinux it is dhcpcd 2021-04-27T14:46:05 #kisslinux i've run into that too 2021-04-27T14:46:06 #kisslinux with qemu 2021-04-27T14:46:30 #kisslinux dhcpcd has had checksum changes a few times 2021-04-27T14:46:48 #kisslinux does that mean i'm without dhcpcd until it is fixed? 2021-04-27T14:47:03 #kisslinux `kiss fork dhcpcd; cd dhcpcd; kiss c; kiss b` 2021-04-27T14:47:04 #kisslinux quick fix would to just do "kiss c dhcpcd" 2021-04-27T14:47:21 #kisslinux this will regenerate the checksums without messing with the main reopo 2021-04-27T14:47:31 #kisslinux doesn't a checksum override kind of defeat the point of checksumming 2021-04-27T14:47:41 #kisslinux ^ 2021-04-27T14:47:43 #kisslinux it does, but i asked how to turn it off anyway 2021-04-27T14:47:48 #kisslinux totally fair 2021-04-27T14:47:55 #kisslinux just pointing out that we should be harping on maintainers 2021-04-27T14:48:02 #kisslinux the checksum is working fine here, looks like your dl got corrupted 2021-04-27T14:48:12 #kisslinux try rm ~/.cache/kiss/sources/dhcpcd/* then kiss b again 2021-04-27T14:48:32 #kisslinux darn, i already did it with 'kiss c' though 2021-04-27T14:48:50 #kisslinux you'll know if the build fails :p 2021-04-27T14:48:56 #kisslinux well, just remember next time 2021-04-27T14:49:05 #kisslinux as long as you improve, that's all anyone can ask 2021-04-27T14:49:09 #kisslinux if i remove that and do it again, it should work theoretically right? 2021-04-27T14:49:22 #kisslinux it's downloading it 2021-04-27T14:49:24 #kisslinux unless there's something messing with your traffic, yeah 2021-04-27T14:49:26 #kisslinux it should 2021-04-27T14:49:40 #kisslinux could not resolve host: github.com 2021-04-27T14:49:46 #kisslinux that explains it 2021-04-27T14:49:47 #kisslinux i dont get what's happening, my internet is clearly working :/ 2021-04-27T14:49:59 #kisslinux is your /etc/resolv.conf setup right? 2021-04-27T14:50:03 #kisslinux ^ 2021-04-27T14:50:24 #kisslinux i'm just looking at it now 2021-04-27T14:50:25 #kisslinux it's empty 2021-04-27T14:50:25 #kisslinux (if it's empty, you need to add a nameserver) 2021-04-27T14:50:32 #kisslinux (oh) 2021-04-27T14:50:37 #kisslinux rip 2021-04-27T14:50:40 #kisslinux just slap "nameserver 8.8.8.8" in there 2021-04-27T14:50:42 #kisslinux well i tried pinging URLs earlier and that was working 2021-04-27T14:50:43 #kisslinux 1.1.1.1 2021-04-27T14:50:44 #kisslinux or whatever your preferred dns is 2021-04-27T14:50:48 #kisslinux let's not push people to google 2021-04-27T14:50:53 #kisslinux cloudflare isn't much better 2021-04-27T14:50:54 #kisslinux or cloudflare 2021-04-27T14:51:08 #kisslinux yeah both are evil ;d 2021-04-27T14:51:11 #kisslinux ideally SDF's DNS service would be up 2021-04-27T14:51:14 #kisslinux but it's NOT 2021-04-27T14:51:21 #kisslinux * midfavila glares at the sysops of SDF 2021-04-27T14:51:23 #kisslinux it's just a DNS so i should just get the one which is more likely to be up at all times 2021-04-27T14:51:30 #kisslinux which would be google right? 2021-04-27T14:51:30 #kisslinux "just a DNS" 2021-04-27T14:51:38 #kisslinux both will be very reliable 2021-04-27T14:51:38 #kisslinux DNS is uh, kind of important 2021-04-27T14:51:44 #kisslinux i know that's what i mean 2021-04-27T14:51:46 #kisslinux it's like 2021-04-27T14:51:56 #kisslinux would i see a difference? 2021-04-27T14:51:57 #kisslinux https://privacytools.io/providers/dns/ 2021-04-27T14:51:59 #kisslinux of which one i use 2021-04-27T14:52:09 #kisslinux ping em each and use that one that has the lowest latency 2021-04-27T14:52:19 #kisslinux ...I just realized, I have no idea where I get my DNS results from 2021-04-27T14:52:27 #kisslinux like, my desktop points to my router 2021-04-27T14:52:30 #kisslinux but my router points to itself 2021-04-27T14:52:31 #kisslinux ??? 2021-04-27T14:52:42 #kisslinux time to read config files 2021-04-27T14:52:47 #kisslinux Just temporarily use any dns, set up dhcpcd then let it use your isp dns 2021-04-27T14:52:58 #kisslinux 8.8.8.8 is quicker 2021-04-27T14:53:04 #kisslinux so i'll use that 2021-04-27T14:53:16 #kisslinux ok now dhpcd 2021-04-27T14:53:19 #kisslinux third time's the charm 2021-04-27T14:53:22 #kisslinux 9.9.9.9 is king 2021-04-27T14:53:42 #kisslinux higher latency just tried it :/ 2021-04-27T14:54:04 #kisslinux at least the download worked so i'm not super crazy on it being super fast 2021-04-27T14:54:07 #kisslinux ah okay, I see. I'm getting mine from an altnet DNS 2021-04-27T14:54:13 #kisslinux crisis averted 2021-04-27T14:54:48 #kisslinux y'know i think this is the longest amount of time i've been in an irc channel 2021-04-27T14:54:51 #kisslinux if you're privacy centric, i'd reccommend https://dns.njal.la/ 2021-04-27T14:54:58 #kisslinux though performance may not be the greatest ;d 2021-04-27T14:55:07 #kisslinux #kisslinux is very easy to spend a while chatting in 2021-04-27T14:55:34 #kisslinux i think i'd just use IRC for stuff other than tech support, if i could log in and see what has already been said before i logged in 2021-04-27T14:55:39 #kisslinux is is literally the one feature im missing 2021-04-27T14:55:44 #kisslinux there's logbot 2021-04-27T14:55:48 #kisslinux yeahyeah i know 2021-04-27T14:55:54 #kisslinux but like it's not as intuitive 2021-04-27T14:55:54 #kisslinux you can also set up a bouncer 2021-04-27T14:56:07 #kisslinux i knowwww but that kinda ruins the appeal 2021-04-27T14:56:07 #kisslinux personally, I actually like not seeing all the crap from before 2021-04-27T14:56:12 #kisslinux of using any client on literally any thing ever 2021-04-27T14:56:22 #kisslinux well, you can't have it both ways :P 2021-04-27T14:57:00 #kisslinux most of the popular clients support bouncers fwiw 2021-04-27T14:57:15 #kisslinux also i really dont understand how a lot of it works 2021-04-27T14:57:24 #kisslinux all i know is joining a channel 2021-04-27T14:57:45 #kisslinux but i could read up on that 2021-04-27T14:57:51 #kisslinux well, today, dns, tomorrow, the world! 2021-04-27T14:58:21 #kisslinux /help is your friend 2021-04-27T14:58:31 #kisslinux (minus the backslash) 2021-04-27T14:58:46 #kisslinux literally echoes nothing 2021-04-27T14:59:01 #kisslinux heyho! 2021-04-27T14:59:08 #kisslinux weird. 2021-04-27T14:59:10 #kisslinux gcc 11 is out 2021-04-27T14:59:13 #kisslinux hey, thermatrix 2021-04-27T14:59:16 #kisslinux oh great, GCC 11 2021-04-27T14:59:21 #kisslinux time for all my packages to break 2021-04-27T14:59:21 #kisslinux again 2021-04-27T14:59:32 #kisslinux lol not matrix, matix 2021-04-27T14:59:34 #kisslinux :D 2021-04-27T14:59:43 #kisslinux oh, thermatix 2021-04-27T14:59:45 #kisslinux * midfavila facedesks 2021-04-27T14:59:49 #kisslinux close enough 2021-04-27T14:59:55 #kisslinux all the crap I ordered off of amazon is here 2021-04-27T14:59:56 #kisslinux my one question about irc has just been answered 2021-04-27T14:59:57 #kisslinux hear me out 2021-04-27T15:00:02 #kisslinux >amazon 2021-04-27T15:00:05 #kisslinux absolutely CRINGE 2021-04-27T15:00:14 #kisslinux this is an ebay channel 2021-04-27T15:00:20 #kisslinux lol 2021-04-27T15:00:48 #kisslinux midfavila: like, i recognise you from last time i got in this channel, and then i also saw you said hello to someone *you* recognised. idk what im saying but like i was basically always curious if people actually meet other people on irc 2021-04-27T15:01:03 #kisslinux well, of course you do! 2021-04-27T15:01:08 #kisslinux there are regulars in every channel 2021-04-27T15:01:19 #kisslinux yeah, I've been regular since last week... 2021-04-27T15:01:22 #kisslinux I think? 2021-04-27T15:01:22 #kisslinux it's the same as any other community on the net 2021-04-27T15:01:42 #kisslinux hmmm, i might start just having an irc client in this channel cause why not 2021-04-27T15:01:53 #kisslinux i've been switching more and more to iRC 2021-04-27T15:01:56 #kisslinux but right now im literally in irssi in a VM so that isn't optimal 2021-04-27T15:02:06 #kisslinux irssi? 2021-04-27T15:02:09 #kisslinux i used to use telegram and discord almost exclusively, but I'm getting real sick of both of those 2021-04-27T15:02:13 #kisslinux i usually boot up irssi and slap it in a tmux session 2021-04-27T15:02:14 #kisslinux irssi is a cli irc client 2021-04-27T15:02:18 #kisslinux iirc it's written in perl? 2021-04-27T15:02:18 #kisslinux ah 2021-04-27T15:02:24 #kisslinux it's like the most nothing-y irc client 2021-04-27T15:02:31 #kisslinux i mean 2021-04-27T15:02:31 #kisslinux no 2021-04-27T15:02:31 #kisslinux I only dicord when I need to 2021-04-27T15:02:34 #kisslinux i have a simpler irc client 2021-04-27T15:02:35 #kisslinux midfavila: c but most plugins are perl 2021-04-27T15:02:35 #kisslinux lmao 2021-04-27T15:02:48 #kisslinux and I no one I know is on telegram 2021-04-27T15:02:58 #kisslinux what's a irc client that i can have the window closed, and it's like just in my systray 2021-04-27T15:03:03 #kisslinux pidgin 2021-04-27T15:03:04 #kisslinux hexchat 2021-04-27T15:03:05 #kisslinux hexchat 2021-04-27T15:03:08 #kisslinux jinx 2021-04-27T15:03:10 #kisslinux this is probably the worst channel to ask that lol 2021-04-27T15:03:10 #kisslinux stfu 2021-04-27T15:03:14 #kisslinux yes it is, yabobay 2021-04-27T15:03:14 #kisslinux :D 2021-04-27T15:03:14 #kisslinux lol 2021-04-27T15:03:25 #kisslinux I would use a bounce if you can 2021-04-27T15:03:25 #kisslinux systrays are bloat, shame on you! /s 2021-04-27T15:03:30 #kisslinux s/bounce/bouncer 2021-04-27T15:03:30 #kisslinux XD 2021-04-27T15:03:32 #kisslinux hey i like me some bloat 2021-04-27T15:03:34 #kisslinux everything is bloat 2021-04-27T15:03:40 #kisslinux the OS is bloat, unikernal all the way 2021-04-27T15:03:50 #kisslinux look at this dude 2021-04-27T15:03:52 #kisslinux he uses a kernel 2021-04-27T15:03:53 #kisslinux lmao 2021-04-27T15:04:05 #kisslinux just flip switches on your front panel, luser 2021-04-27T15:04:20 #kisslinux i mean what i'm running on main system is opensuse. that should tell you enough about my usual bloat standards 2021-04-27T15:04:31 #kisslinux >SuSE 2021-04-27T15:04:32 #kisslinux i need to set up a bouncer, it's not uncommon that i just stop using irc for weeks/months because i cba to boot it up / configure it ;d 2021-04-27T15:04:44 #kisslinux if you're using a bigger distro, at least use slackware 2021-04-27T15:04:45 #kisslinux c'mon now 2021-04-27T15:04:53 #kisslinux well the thing about slackware is like 2021-04-27T15:05:04 #kisslinux i would use it but it has the same problem as kiss linux and a lot of distros 2021-04-27T15:05:10 #kisslinux it doesnt track which dependencies are NOT needed anymore 2021-04-27T15:05:14 #kisslinux so i can remove them 2021-04-27T15:05:15 #kisslinux okay, well 2021-04-27T15:05:21 #kisslinux reverse dependency tracking is uh 2021-04-27T15:05:23 #kisslinux kind of a major issue 2021-04-27T15:05:34 #kisslinux but there's a plugin for kiss to manage that 2021-04-27T15:05:41 #kisslinux and slpkg manages it on slackware 2021-04-27T15:05:41 #kisslinux oooo really?? 2021-04-27T15:05:46 #kisslinux yeah 2021-04-27T15:05:58 #kisslinux and on slackware?? huh im learning stuff 2021-04-27T15:06:05 #kisslinux slackware has like five different package managers 2021-04-27T15:06:06 #kisslinux irc increases my mind already 2021-04-27T15:06:16 #kisslinux IRC - Legendary Chat Protocol 2021-04-27T15:06:18 #kisslinux the beauty of kiss is i have an idea of why each package is installed, and my package list is small enough that I can check it myself every few days and see if i have anything not needed anymore 2021-04-27T15:06:22 #kisslinux +1 to INT, binds on equip 2021-04-27T15:06:33 #kisslinux even though I probably have what is the higher end of installed packages here ;d 2021-04-27T15:06:40 #kisslinux post package count 2021-04-27T15:06:41 #kisslinux do it 2021-04-27T15:06:42 #kisslinux rn 2021-04-27T15:06:48 #kisslinux kiss l | wc -l 2021-04-27T15:06:52 #kisslinux 309 2021-04-27T15:07:00 #kisslinux blote 2021-04-27T15:07:00 #kisslinux btw i was wondering earlier, i could theoretically just slap a prebuilt kernel into /boot instead of compiling it? im not gonna do it for real just wondering 2021-04-27T15:07:06 #kisslinux yes, you can 2021-04-27T15:07:06 #kisslinux actually not as bad as i was expecting 2021-04-27T15:07:19 #kisslinux probably up to 70 of them being python libs needed for sourcehut aha 2021-04-27T15:07:22 #kisslinux i have 230, but that's with all of my usual build tools 2021-04-27T15:07:34 #kisslinux compiling the kernel isn't that hard, it's figuring out the config options 2021-04-27T15:07:35 #kisslinux stripping old junk usually leaves me around 200 2021-04-27T15:07:39 #kisslinux well 2021-04-27T15:07:40 #kisslinux mine says 34 but i haven't gotten xorg yet 2021-04-27T15:07:44 #kisslinux the thing with compiling a kernel 2021-04-27T15:07:47 #kisslinux is that you have to either a) 2021-04-27T15:07:53 #kisslinux be following a guide from someone who's semi-competent 2021-04-27T15:07:55 #kisslinux or b) 2021-04-27T15:08:05 #kisslinux autistically research every option you change 2021-04-27T15:08:09 #kisslinux I just winged it 2021-04-27T15:08:14 #kisslinux probably not a good thing 2021-04-27T15:08:18 #kisslinux "winging it" with your kernel is an awful idea 2021-04-27T15:08:31 #kisslinux i just did localyesdefaults or whatever it was from the wiki and then modified some stuff in menuconfig 2021-04-27T15:08:37 #kisslinux well, It's not that I didn't research what I looked at 2021-04-27T15:08:42 #kisslinux normally I do make defconfig 2021-04-27T15:08:46 #kisslinux then disable everything I don't need 2021-04-27T15:08:51 #kisslinux enable everything I know I need for sure 2021-04-27T15:08:57 #kisslinux and then do research on stuff I don't know about 2021-04-27T15:09:05 #kisslinux and just repeat that until I'm satisfied 2021-04-27T15:09:16 #kisslinux that's usually how it goes for me too 2021-04-27T15:09:19 #kisslinux oh boy how am i gonna get guest additions on this vm lol 2021-04-27T15:09:21 #kisslinux as it stands I'm tinkering with the kernel's memory management subsystem to use compression for pages 2021-04-27T15:10:00 #kisslinux I don't think I needed guest additions when I was doing kiss on the VM 2021-04-27T15:10:06 #kisslinux guest additions are for like 2021-04-27T15:10:09 #kisslinux winshit 2021-04-27T15:10:14 #kisslinux though I guess it would have made things a bit easier? 2021-04-27T15:10:22 #kisslinux use kvm, problem solved ;d 2021-04-27T15:10:24 #kisslinux i mainly want it for setting the resolution to native when i get xorg 2021-04-27T15:10:29 #kisslinux kvm and qemu are very comfy 2021-04-27T15:11:02 #kisslinux oh im dumb i just remembered 2021-04-27T15:11:04 #kisslinux xrandr 2021-04-27T15:11:12 #kisslinux actually 2021-04-27T15:11:18 #kisslinux you don't need xrandr to set the resolution 2021-04-27T15:11:26 #kisslinux you can do it using standard xorg configuration files 2021-04-27T15:11:39 #kisslinux hmmm 2021-04-27T15:11:43 #kisslinux or just always use the native resolution like I do 2021-04-27T15:11:48 #kisslinux (or just by taking the wayland pill) 2021-04-27T15:11:50 #kisslinux well, I use native resolution 2021-04-27T15:11:55 #kisslinux but two of my monitors are portrait 2021-04-27T15:11:58 #kisslinux wayland don't got MATE so nnnnnever 2021-04-27T15:12:04 #kisslinux >MATE 2021-04-27T15:12:40 #kisslinux a friend of mine uses Ubuntu MATE 2021-04-27T15:12:45 #kisslinux so I have to bully him for that 2021-04-27T15:12:47 #kisslinux i just like the gnome 2 "i can have as many panels as i want" sorta look 2021-04-27T15:13:11 #kisslinux anything that uses GTK3 is off the table for me until STLWRT comes out 2021-04-27T15:13:29 #kisslinux yeah that's why i had to stop using xfce 2021-04-27T15:13:41 #kisslinux what's STLWRT? 2021-04-27T15:13:51 #kisslinux STLWRT is a replacement for GTK2/3/4 2021-04-27T15:14:08 #kisslinux basically, it implements shims for 3 and soon 4, and interfaces it with a fork of GTK2 2021-04-27T15:14:22 #kisslinux just dawned on me, how come i've never seen anything use GTK1? 2021-04-27T15:14:23 #kisslinux so you can run GTK3 programs but with the aesthetics of GTK2 2021-04-27T15:14:32 #kisslinux and you've never seen anything use GTK1 because GTK1 is ancient 2021-04-27T15:14:37 #kisslinux but mtpaint still supports building with it 2021-04-27T15:14:50 #kisslinux hey dilyn 2021-04-27T15:14:52 #kisslinux just fyi 2021-04-27T15:15:01 #kisslinux i posted an enhancement for hummingbird earlier 2021-04-27T15:15:04 #kisslinux to fix reaping 2021-04-27T15:15:10 #kisslinux you might find it useful 2021-04-27T15:15:19 #kisslinux o/ dilyn 2021-04-27T15:15:24 #kisslinux o/ 2021-04-27T15:15:30 #kisslinux oh neat! i already used your sed fix in my package but will take a look at that 2021-04-27T15:15:31 #kisslinux i noticed that's why i joined! 2021-04-27T15:15:37 #kisslinux Sad that Sweets has disappeared :( 2021-04-27T15:15:41 #kisslinux yknow whats funny is i'm done installing kiss so i can just reboot now but i dont wanna exit the irc channel 2021-04-27T15:15:45 #kisslinux * midfavila nods 2021-04-27T15:15:46 #kisslinux Their gh seems active 2021-04-27T15:15:52 #kisslinux lol 2021-04-27T15:16:03 #kisslinux the channel isn't going to disappear when you leave yabobay 2021-04-27T15:16:11 #kisslinux just open up IRC on a different computer 2021-04-27T15:16:15 #kisslinux also that 2021-04-27T15:16:16 #kisslinux cause if i exit it now, then i have to get back to work 2021-04-27T15:16:27 #kisslinux this is me, currently at work ;d 2021-04-27T15:16:28 #kisslinux cause rn i can kinda convince myself to ignore it 2021-04-27T15:16:39 #kisslinux i'm supposed to be in class rn lmao 2021-04-27T15:16:52 #kisslinux oh i cannot have chat open and work simultaneously i am incapable of that 2021-04-27T15:16:57 #kisslinux practice 2021-04-27T15:17:01 #kisslinux yeah i'm working v hard rn :v 2021-04-27T15:17:09 #kisslinux balance those accounts, dilyn! 2021-04-27T15:17:23 #kisslinux testuser_ I just mean that they haven't been present in KISS very much 2021-04-27T15:17:32 #kisslinux just have to be sure not to get keyboards mixed up, almost had some awkward conversations with coworkers that way 2021-04-27T15:17:36 #kisslinux they have a screenshot on the website 2021-04-27T15:17:49 #kisslinux alright yknow what, it's frickin schoolwork, im just gonna get it over with. see y'all later! 2021-04-27T15:17:51 #kisslinux mid: there's a lull so instead I'm finalizing my resume and collecting new references 2021-04-27T15:17:51 #kisslinux is the site still accepting screens? 2021-04-27T15:17:55 #kisslinux ciao 2021-04-27T15:17:57 #kisslinux always! 2021-04-27T15:18:01 #kisslinux hmmmmmm 2021-04-27T15:18:30 #kisslinux once I work on my config more I'll have to submit one 2021-04-27T15:18:34 #kisslinux the screenshots are just in-text images linked to from a github issue 2021-04-27T15:18:42 #kisslinux >gh 2021-04-27T15:18:48 #kisslinux which reminds me, I should nab those images from the kisslinux/website repo so they don't ~disappear~ 2021-04-27T15:18:56 #kisslinux you can email me the shot lol 2021-04-27T15:19:05 #kisslinux I'm still stuck on getting my stupid touchpad working, let alone making KISS look awesome 2021-04-27T15:19:08 #kisslinux i'll send it to you as a ROT13 binary 2021-04-27T15:19:11 #kisslinux but yeah I'm certain people would love to see an oldschool style desktop 2021-04-27T15:19:18 #kisslinux ew nvm 2021-04-27T15:19:23 #kisslinux do not send me one mid 2021-04-27T15:19:23 #kisslinux b& 2021-04-27T15:19:24 #kisslinux :v 2021-04-27T15:19:25 #kisslinux lol 2021-04-27T15:19:31 #kisslinux rot26 might be better 2021-04-27T15:19:34 #kisslinux the most secure cipher 2021-04-27T15:19:35 #kisslinux what is rot? 2021-04-27T15:19:40 #kisslinux rotational cipher 2021-04-27T15:19:48 #kisslinux also called the caeser cipher 2021-04-27T15:19:50 #kisslinux caesar? 2021-04-27T15:19:51 #kisslinux as a binary? 2021-04-27T15:19:51 #kisslinux caesar 2021-04-27T15:19:58 #kisslinux and yeah, you can encode any data with ROT 2021-04-27T15:20:05 #kisslinux it's a common practice on USENET 2021-04-27T15:20:31 #kisslinux anything on alt.binaries is transcoded to text and encoded using ROT13 so that it can be transmitted as plaintext 2021-04-27T15:20:53 #kisslinux then it's decrypted, re-encoded to the original format, and put back together 2021-04-27T15:21:48 #kisslinux i actually need to start teaching myself useful ciphers... 2021-04-27T15:24:22 #kisslinux hmm, STLWRT looks pretty neat, hope he manages to get it completed 2021-04-27T15:24:28 #kisslinux so do I! 2021-04-27T15:24:40 #kisslinux it'll open up newer programs to me 2021-04-27T15:24:48 #kisslinux and provide a semi-stable library to tinker with 2021-04-27T15:25:26 #kisslinux maybe he'll add image previews to the file select dialog 2021-04-27T15:25:33 #kisslinux after 21 years of waiting 2021-04-27T15:26:11 #kisslinux does gtk2 not have that? i think the last time i used gtk2 was..2011? ;d 2021-04-27T15:26:18 #kisslinux Right, I'm going out for some icecream, laters 2021-04-27T15:26:26 #kisslinux GTK doesn't have file select previews period 2021-04-27T15:26:38 #kisslinux 1,2,3 or 4 2021-04-27T15:26:48 #kisslinux huh? seems to work fine with gtk3, just tried it 2021-04-27T15:27:08 #kisslinux ...does it??? It didn't the last time I touched GTK3 2021-04-27T15:27:17 #kisslinux ...admittedly that was... over a year and a half ago 2021-04-27T15:27:51 #kisslinux yep, the gtk file chooser in firefox and discord both have working previews for me 2021-04-27T15:28:15 #kisslinux huh. 2021-04-27T15:29:43 #kisslinux i was about to say, gtk is pretty bad but not _that_ bad lol 2021-04-27T15:29:54 #kisslinux at least it's not Qt 2021-04-27T15:30:02 #kisslinux I don't trust Trolltech as far as I could throw their CEO 2021-04-27T15:30:35 #kisslinux yeah i avoid qt just because of their parent company 2021-04-27T15:31:06 #kisslinux what pisses me off is that there's no libre CAD software written with GTK 2021-04-27T15:31:32 #kisslinux i mean, shit, even Tk has its own CAD suite 2021-04-27T15:31:47 #kisslinux ...said suite is from like the 1970s and was developed by the military, but still 2021-04-27T15:32:31 #kisslinux i really wish there was more software written with FLTK 2021-04-27T15:32:32 #kisslinux oh god, gcc 11.1.0. say it ain't so. 2021-04-27T15:32:36 #kisslinux let the great rebuild commence 2021-04-27T15:32:38 #kisslinux it be so 2021-04-27T15:32:46 #kisslinux prepare thine sphincter 2021-04-27T15:33:29 #kisslinux https://en.wikipedia.org/wiki/BRL-CAD 2021-04-27T15:33:31 #kisslinux were you thinking of this: https://jayfax.neocities.org/mediocrity/gnome-has-no-thumbnails-in-the-file-picker.html 2021-04-27T15:33:31 #kisslinux yeah, here it is 2021-04-27T15:33:42 #kisslinux no, I was thinking of GTK 2021-04-27T15:33:43 #kisslinux also 2021-04-27T15:33:44 #kisslinux >cirno 2021-04-27T15:33:45 #kisslinux based 2021-04-27T15:34:56 #kisslinux ah yeah, you get file previews but only one at a time, now that _does_ suck 2021-04-27T15:35:56 #kisslinux yeah no this isn't a GNOME issue 2021-04-27T15:35:58 #kisslinux this is a GTK issue 2021-04-27T15:36:07 #kisslinux they use the same file selection program 2021-04-27T15:36:07 #kisslinux in other gtk news, getting audacity to work this time around was way easier than it was this time last year 2021-04-27T15:36:10 #kisslinux It is a GtkFileChooser problem underneath it all 2021-04-27T15:36:15 #kisslinux wxwidgets become much nicer lol 2021-04-27T15:36:22 #kisslinux you'd think someone would have just replaced gtkfilechooser 2021-04-27T15:36:27 #kisslinux is there a reason that can't be done? 2021-04-27T15:36:39 #kisslinux ...that's the whole point of their rant lol 2021-04-27T15:37:17 #kisslinux i'm only about a quarter of the way done reading. I'm multitasking across three browsers and three machines right now 2021-04-27T15:37:19 #kisslinux looks like some distros just patch it themselves, but upstream refuses to fix it 2021-04-27T15:39:02 #kisslinux ah nice, yeah just found a fork that fixes it here https://github.com/Dudemanguy/gtk 2021-04-27T15:39:22 #kisslinux >gtk3 2021-04-27T15:39:25 #kisslinux fuck 2021-04-27T15:39:43 #kisslinux ohwait 2021-04-27T15:39:43 #kisslinux and for gtk2! https://github.com/Dudemanguy/gtk/tree/gtk2-filechooser-icon-view 2021-04-27T15:39:46 #kisslinux there's a - 2021-04-27T15:39:47 #kisslinux yeah 2021-04-27T15:40:07 #kisslinux i'll give it a try at least 2021-04-27T15:40:09 #kisslinux thanks 2021-04-27T15:41:17 #kisslinux just another thing that i don't get why it's taken so long for gnome/gtk devs to fix, really don't understand their priorities ;d 2021-04-27T15:41:33 #kisslinux it's because GNOME is more concerned about moral pandering than writing good software 2021-04-27T15:41:39 #kisslinux that's the flaw with libre software versus open software 2021-04-27T15:41:51 #kisslinux but it's also the main advantage of libre software... 2021-04-27T15:42:15 #kisslinux the problem is that their "moral pandering" so to say isn't even directed at software, which is what it *should be* 2021-04-27T15:43:32 #kisslinux dilyn could we maybe add the filechooser patch? 2021-04-27T15:43:35 #kisslinux that would be really nice 2021-04-27T15:43:42 #kisslinux hmhmhm 2021-04-27T15:44:17 #kisslinux doesn't look like it would require a new package, just a regular patch -Np1 < patch.patch 2021-04-27T15:44:33 #kisslinux mhmm 2021-04-27T15:44:51 #kisslinux https://gist.github.com/Dudemanguy/c172394e30e1e7d0f477ad15c719bc71 christ this patch is big 2021-04-27T15:44:53 #kisslinux Looks like it needs dbud 2021-04-27T15:45:00 #kisslinux ...aw wait, what??? 2021-04-27T15:45:05 #kisslinux no fucking way 2021-04-27T15:45:19 #kisslinux To address this, the glib-thumbnailer patch sends a signal to dbus to generate thumbnails while the filechooser dialog is open. 2021-04-27T15:45:35 #kisslinux that's bullshit 2021-04-27T15:45:37 #kisslinux :| 2021-04-27T15:45:51 #kisslinux lmfao 2021-04-27T15:46:25 #kisslinux that's a separate patch, no? 2021-04-27T15:46:56 #kisslinux But looks like it's needed if you want it to be useful 2021-04-27T15:47:00 #kisslinux According to the readme 2021-04-27T15:48:16 #kisslinux ragequit lol 2021-04-27T15:48:20 #kisslinux no 2021-04-27T15:48:26 #kisslinux oh no, not another "just shove it into dbus" solution 2021-04-27T15:48:28 #kisslinux i'm working on getting the GTK2 patch working 2021-04-27T15:49:50 #kisslinux well, it looks like it can use a program called tumbler to generate thumbnails without the need for dbus... 2021-04-27T15:50:23 #kisslinux They need to be pregenerated, else a default icon is shown 2021-04-27T15:50:37 #kisslinux So it uses dbus to call the generator thing 2021-04-27T15:50:51 #kisslinux yes, and tumbler is what's used for that. but it looks like tumbler requires dbus anyway.... 2021-04-27T15:50:54 #kisslinux that's so fucking lame 2021-04-27T15:50:59 #kisslinux there has to be a dbus-less solution to this 2021-04-27T15:53:01 #kisslinux tumbler doesn't seem to require dbus, not mentioned in arch depends 2021-04-27T15:53:20 #kisslinux But the package description is literally "D-Bus service for applications to request thumbnails" 2021-04-27T15:53:35 #kisslinux yeah, that's why I was just 2021-04-27T15:53:38 #kisslinux "fuuuuuuuuuuck" 2021-04-27T15:53:59 #kisslinux * glib-2.0 >= 2.16.0 * gio-2.0 >= 2.16.0 * gthread-2.0 >= 2.16.0 * dbus-1 >= 1.0.0 * dbus-glib-1 >= 0.72 2021-04-27T15:54:04 #kisslinux dependencies from the github repo 2021-04-27T15:54:11 #kisslinux https://github.com/ammonkey/tumbler-thumbnailer 2021-04-27T15:54:12 #kisslinux hah, and there it is 2021-04-27T15:54:38 #kisslinux this is making me kind of angry 2021-04-27T15:54:49 #kisslinux there's literally no reason for this to be a dbus thing 2021-04-27T15:54:55 #kisslinux i really hate how dbus is just relied so heavily across the gnome ecosystem, if they've had it their way the gnomes dev would implement **every** wayland protocol ontop of dbus 2021-04-27T15:54:57 #kisslinux make it a library that can be compiled into programs 2021-04-27T15:55:01 #kisslinux ITS PART OF THE SPEC GEEZ GUYS: https://wiki.gnome.org/action/show/DraftSpecs/ThumbnailerSpec?action=show&redirect=ThumbnailerSpec 2021-04-27T15:55:05 #kisslinux lmao 2021-04-27T15:55:12 #kisslinux do I have to get my bayonet 2021-04-27T15:55:15 #kisslinux because I fucking will 2021-04-27T15:55:36 #kisslinux I mean if you're gonna use it, might as well integrate it :v 2021-04-27T15:55:43 #kisslinux that's my point! 2021-04-27T15:55:51 #kisslinux "With a DBus specification for thumbnail management, applications don't have to implement thumbnail management themselves. If a thumbnailer is available they can delegate thumbnail work to a specialized service. The service then callbacks when it has finished generating the thumbnail. " 2021-04-27T15:55:53 #kisslinux gtk should have it as an optional dependency 2021-04-27T15:55:59 #kisslinux just add some fucking, idk 2021-04-27T15:56:10 #kisslinux ifdefs? is that what's used for optional deps? 2021-04-27T15:56:13 #kisslinux 'add some fucking' -midfavila, 2021 2021-04-27T15:56:20 #kisslinux ahahaha 2021-04-27T15:56:37 #kisslinux and all the other options are in python! 2021-04-27T15:56:40 #kisslinux this is ridiculous 2021-04-27T15:56:55 #kisslinux you know what- I'm adding a thumbnail generator to my list of projects 2021-04-27T15:56:57 #kisslinux fuck this 2021-04-27T15:57:38 #kisslinux goddamn soydevs 2021-04-27T16:05:02 #kisslinux glhf :v 2021-04-27T16:06:30 #kisslinux i wonder how "in-depth" the d-bus usage is. maybe it could be shimmed out somehow like dylan's eiwd did to iwd? 2021-04-27T16:07:55 #kisslinux pidgin client test 2021-04-27T16:07:55 #kisslinux sorry this is the first channel i thought of 2021-04-27T16:13:02 #kisslinux well, it requires the XFCE build tools, too 2021-04-27T16:13:07 #kisslinux which is equally as awful 2021-04-27T16:13:08 #kisslinux Is all of community rebuild during gcc updates too ? 2021-04-27T16:13:55 #kisslinux haven't even looked at it yet, but imagine it wouldn't be too hard to use something ala imagemagick/ffmpeg as a wrapper to "thumbnailer" if it calls it directly 2021-04-27T16:13:55 #kisslinux eeeehhhh 2021-04-27T16:14:16 #kisslinux if ffmpeg could be used that would be nice 2021-04-27T16:14:20 #kisslinux imagemagick is less common 2021-04-27T16:14:58 #kisslinux but you would have to figure out how it calls tumbler and translate those calls into equivalent ffmpeg ones, then change the code so that it calls the support script... 2021-04-27T16:15:08 #kisslinux and probably other stuff too 2021-04-27T16:15:51 #kisslinux the real question is, is there a spec describing how GTK handles thumbnails? 2021-04-27T16:16:15 #kisslinux Isn't that the dbus thumbnailer spec thing omnious sent 2021-04-27T16:16:41 #kisslinux there's this too: https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html 2021-04-27T16:16:46 #kisslinux i didn't catch that, but I mean like... how are they represented on the filesystem? 2021-04-27T16:17:01 #kisslinux a thumbnail is just a downsized version of the image itself right? so it must be on the fs somewhere 2021-04-27T16:17:18 #kisslinux https://tecnocode.co.uk/2013/10/21/writing-a-gnome-thumbnailer/ 2021-04-27T16:17:20 #kisslinux and as long as the thumbnails are there and proper, it doesn't matter *how* they get there 2021-04-27T16:20:18 #kisslinux looks like pcmanfm uses ~/.cache/thumbnails atleast 2021-04-27T16:20:30 #kisslinux no idea of the gtk filer chooser uses the same 2021-04-27T16:22:05 #kisslinux right now I just want to figure out the naming scheme and stuff 2021-04-27T16:22:45 #kisslinux honestly, I can't see this being too difficult of a project, assuming that it's not depending on a dbus interface 2021-04-27T16:23:34 #kisslinux take the image as input to a conversion command, set it to output as 8bit antialiased PNG, do whatever the EXIF tags want, dump it in the proper place with the proper name 2021-04-27T16:23:36 #kisslinux * midfavila shrugs 2021-04-27T16:24:40 #kisslinux looks like it uses a URI embedded in the resulting PNG to indicate original file..? hm. 2021-04-27T16:25:31 #kisslinux gonna have to go into hardcore hacking mode for this one 2021-04-27T16:25:33 #kisslinux https://vid.puffyan.us/watch?v=KEkrWRHCDQU 2021-04-27T16:25:43 #kisslinux powerglove: activated 2021-04-27T16:51:32 #kisslinux ah, I see what they do. they use MD5 and the URI of the original file to calculate a hash, then append .png 2021-04-27T17:12:20 #kisslinux is anybody else having difficulty getting qemu to build? 2021-04-27T17:12:54 #kisslinux last time I tried it had checksum errors 2021-04-27T17:12:57 #kisslinux haven't bothered to check since 2021-04-27T17:13:29 #kisslinux it compiles all the files then fails when trying to link them 2021-04-27T17:13:37 #kisslinux i'll have to investigate 2021-04-27T17:14:14 #kisslinux if anyone has a working qemu that's built for x86-64 would it be possible for you to export the kiss pkg and send it somehow 2021-04-27T17:24:36 #kisslinux so, i've just completed an install of kisslinux32, in virtualbox, and `ip link` will only show "lo" and "sit0", which does not work when trying to set up dhcpcd. 2021-04-27T17:24:50 #kisslinux i've configured my kernel's drivers according to the gentoo wiki for virtualbox 2021-04-27T17:25:03 #kisslinux my only suggestion is to try ifconfig 2021-04-27T17:25:07 #kisslinux ip is a pain in the ass 2021-04-27T17:25:22 #kisslinux ifconfig only shows lo :/ 2021-04-27T17:25:27 #kisslinux ifconfig -a 2021-04-27T17:25:39 #kisslinux that shows sit0 2021-04-27T17:25:40 #kisslinux and lo 2021-04-27T17:25:48 #kisslinux dmesg | grep eth 2021-04-27T17:25:58 #kisslinux if the device isn't showing up, that means it's a problem with the driver / firmware 2021-04-27T17:26:02 #kisslinux ^ 2021-04-27T17:26:03 #kisslinux or just straight up the device isn't there ;d 2021-04-27T17:26:25 #kisslinux TIL about shell parameter expansion 2021-04-27T17:26:46 #kisslinux hmm. im suddenly considering just taking some distribution kernel 2021-04-27T17:27:13 #kisslinux hah, have fun setting up an initrd and transferring all the modules 2021-04-27T17:27:33 #kisslinux yup, especially considering i don't know what an initrd is or where modules go 2021-04-27T17:27:42 #kisslinux is there some documentation for doing this? 2021-04-27T17:27:49 #kisslinux none that I can link you to 2021-04-27T17:27:54 #kisslinux what i would do is boot up an arch iso, once booted up do "dmesg | grep eth0" and look at the lines around whatever comes up, should give you a hint at what modules/driver u need 2021-04-27T17:27:54 #kisslinux i don't bother with modules or initrd 2021-04-27T17:28:08 #kisslinux huge kernel gang 2021-04-27T17:28:19 #kisslinux once I isolate the firmware for my devices I'll disable firmware loading too 2021-04-27T17:28:27 #kisslinux 6mb kernel gang 2021-04-27T17:28:40 #kisslinux i feel like i know less than nothing about linux haha 2021-04-27T17:28:43 #kisslinux i have a chonky 14.5 mb kernel rn ;d 2021-04-27T17:28:47 #kisslinux bloat 2021-04-27T17:28:48 #kisslinux what the fuck 2021-04-27T17:28:50 #kisslinux thought it is LTO'd in my defense, so not all my fault 2021-04-27T17:28:50 #kisslinux delete your hardware 2021-04-27T17:28:54 #kisslinux so is mine 2021-04-27T17:28:59 #kisslinux kekw 2021-04-27T17:29:04 #kisslinux i compile all my drivers and firmware into my kernels and enable a ton of extra shit 2021-04-27T17:29:08 #kisslinux and even my fattest kernel is like 2021-04-27T17:29:09 #kisslinux 11mb 2021-04-27T17:29:30 #kisslinux I think mine is 5mb, or 3.5 2021-04-27T17:29:33 #kisslinux 6.5 mb with LTO? you are a magician ;d 2021-04-27T17:29:37 #kisslinux do y'all just do `du` on your kernels i would never even think to look 2021-04-27T17:29:40 #kisslinux Call me Magic Mike 2021-04-27T17:29:48 #kisslinux ls -lh is how I check filesize 2021-04-27T17:30:09 #kisslinux i only use du to check the size of directories 2021-04-27T17:30:09 #kisslinux or 2021-04-27T17:30:14 #kisslinux in the case of my /etc/profile 2021-04-27T17:30:16 #kisslinux set repos 2021-04-27T17:30:17 #kisslinux :v 2021-04-27T17:30:30 #kisslinux i only have the amdgpu firmware for my card and the iwlwifi firmware for my wifi, no idea how big those blobs are though 2021-04-27T17:30:32 #kisslinux yknow initially i tried out kisslinux literally just for lols and one day later i actually care 2021-04-27T17:30:46 #kisslinux Been there, done that 2021-04-27T17:30:48 #kisslinux kiss has sovl 2021-04-27T17:30:54 #kisslinux sovl? 2021-04-27T17:30:58 #kisslinux come for the meme, stay for the dream 2021-04-27T17:31:09 #kisslinux !!! 2021-04-27T17:31:13 #kisslinux acheam that should be our slogan 2021-04-27T17:31:25 #kisslinux i moved to kiss because gentoo got in my way too much of using a clang/llvm/musl/nongnu toolchain, and then found wyverkiss which was even better ;d 2021-04-27T17:31:33 #kisslinux gentoo is a pain in the ass 2021-04-27T17:31:41 #kisslinux i've never even used it but I have friends who do 2021-04-27T17:31:56 #kisslinux then again, I doubt it's as bad as source mage 2021-04-27T17:31:59 #kisslinux source mage is... 2021-04-27T17:32:01 #kisslinux * midfavila shudders 2021-04-27T17:32:37 #kisslinux Gentoo ebuilds are so big 2021-04-27T17:32:51 #kisslinux yeah...writing gentoo ebuilds...never again 2021-04-27T17:34:05 #kisslinux kqz: ok so i'm finally doing what you recommended to do, and it says " PCnet/FAST III 79C973 " 2021-04-27T17:34:10 #kisslinux this is not what gentoo wiki said 2021-04-27T17:34:13 #kisslinux is this probably it ? 2021-04-27T17:34:17 #kisslinux likely 2021-04-27T17:34:40 #kisslinux maybe cause im using an outdated kernel 2021-04-27T17:34:47 #kisslinux doubtful 2021-04-27T17:34:55 #kisslinux i always do stupid stuff like this and it ends up causing problems when i never expect it to 2021-04-27T17:34:57 #kisslinux vmware's virtual interfaces emulate ancient and well-supported hardware 2021-04-27T17:34:59 #kisslinux might just upgrade as last resort 2021-04-27T17:35:06 #kisslinux honestly, 2021-04-27T17:35:12 #kisslinux my suggestion for you is to not use a VM for KISS 2021-04-27T17:35:18 #kisslinux just a regular old chroot 2021-04-27T17:35:21 #kisslinux might be, i would also try to do "dmesg | grep -i Ethernet" 2021-04-27T17:35:24 #kisslinux see what else pops up 2021-04-27T17:35:39 #kisslinux not familiar enough with vbox drivers to say for sure if that's the correct driver to look for ;d 2021-04-27T17:35:47 #kisslinux nothing pops up from that 2021-04-27T17:36:00 #kisslinux i didn't have any issue with kiss in a virtualbox vm, but it was 64-bit 2021-04-27T17:36:16 #kisslinux Check your host distro's dmesg 2021-04-27T17:36:18 #kisslinux midfavila: it's like, i'm using a VM cause i don't have any spare machines, and i really honestly want to try kiss for a long time before i see if i like it enough to switch to it. 2021-04-27T17:36:28 #kisslinux use it in a chroot then 2021-04-27T17:36:38 #kisslinux can i run Xorg *from* the chroot? 2021-04-27T17:36:44 #kisslinux probably 2021-04-27T17:36:47 #kisslinux like 99% sure you can 2021-04-27T17:36:52 #kisslinux since it passes through device nodes and all that 2021-04-27T17:37:10 #kisslinux ...actually, no, you totes can 2021-04-27T17:37:12 #kisslinux I've done it before 2021-04-27T17:37:23 #kisslinux You can 2021-04-27T17:37:34 #kisslinux tbh why i even care about kiss linux is it reminds me so much of bonsai when that was a thing. 2021-04-27T17:37:39 #kisslinux is it like a fork or something? 2021-04-27T17:37:44 #kisslinux no 2021-04-27T17:37:47 #kisslinux KISS is independent 2021-04-27T17:38:43 #kisslinux there are forks of kisslinux, though 2021-04-27T17:38:48 #kisslinux the whole appeal for me actually isnt the fact it's so lite, but that it has super easy package writing 2021-04-27T17:39:28 #kisslinux cause otherwise i'd just use alpine or something 2021-04-27T17:40:46 #kisslinux you could always just install kiss (the package manager) on alpine if you wanted to get hacky with it, ymmv though 2021-04-27T17:41:02 #kisslinux ymmv? 2021-04-27T17:41:21 #kisslinux your mileage may vary 2021-04-27T17:41:30 #kisslinux you could set KISS_ROOT= so that you don't have collisions between KISS packages and alpine packages 2021-04-27T17:41:42 #kisslinux yeah but then i'd have to mess with my path wouldn't i 2021-04-27T17:41:51 #kisslinux you can run graphical apps in a chroot by using xhost 2021-04-27T17:41:54 #kisslinux (in community) 2021-04-27T17:42:03 #kisslinux not too much... 2021-04-27T17:42:05 #kisslinux could try installing on a usb stick, better than a chroot and vbox 2021-04-27T17:42:34 #kisslinux I never needed xhost for some reason, just export DISPLAY=:0 works 2021-04-27T17:42:43 #kisslinux tink: oh shish you're right! i'm gonna get to work to do that right about now 2021-04-27T17:43:09 #kisslinux that way even if i don't switch to it i can have a nice non-amnesiac live stick which is something i have wanted 2021-04-27T17:44:46 #kisslinux and if i do that, i can also port whatever i need before i start using it 2021-04-27T17:50:20 #kisslinux i found myself installing kiss on a usb stick when i wanted to have a very small system that i could use on any computer simply by plugging it into a usb port as i had access to a lot of semi-public computers which were mostly mac and had software that restricted the user to an annoying degree. then i realized i'd have to build a bloated kernel for that, so i screwed the idea but still installed it on the usb drive with a kernel specific to my laptop. it's a 2021-04-27T17:50:20 #kisslinux pretty fun experience. 2021-04-27T17:50:58 #kisslinux if you wanted to use it on a lot of devices, wouldn't you just get a distribution kernel? 2021-04-27T17:51:29 #kisslinux you can refer to kiss-live for a live USB KISS img 2021-04-27T17:51:35 #kisslinux ^ 2021-04-27T17:51:41 #kisslinux where's that? 2021-04-27T17:51:45 #kisslinux github 2021-04-27T17:51:51 #kisslinux plus the whole point of this is trying to install it myself isn't it ? 2021-04-27T17:53:42 #kisslinux midfavila: is it the repo by eudaldgr? that's the one i found after searching github 2021-04-27T17:54:00 #kisslinux go check it out 2021-04-27T17:54:04 #kisslinux i'm kind of busy atm 2021-04-27T17:54:39 #kisslinux i liked kiss a lot, wanted to go with it. my plan was to have a permanent storage, so i'd be carrying my pc with me everywhere. 2021-04-27T17:55:51 #kisslinux i could actually keep using it this way, booting from the usb drive but it might just have a higher power consumption than an ssd. 2021-04-27T17:59:32 #kisslinux I have difficulties telling Dilyn from Dylan 2021-04-27T18:02:39 #kisslinux dilyn is actually dylan 2021-04-27T18:02:43 #kisslinux believe it or not 2021-04-27T18:03:06 #kisslinux does anyone have a XDG-compliant thumbnail I can look at? 2021-04-27T18:04:57 #kisslinux tink I've experienced flicking on UHD graphics on one laptop. I've read one suggestion to specify i915.enable_psr=0 kernel option and another to specify i915.mitigations=off . So I've done that, but haven't rebooted yet to try it 2021-04-27T18:06:25 #kisslinux jslick: I see, though in my case the screen starts blinking even before booting into any OSes, so it's probably a different issue. 2021-04-27T18:07:28 #kisslinux It's very easy to tell us apart. One of us is very competent and talented, the other is here 2021-04-27T18:14:58 #kisslinux oh, hmmm... yours might be a hardware issue 2021-04-27T18:21:42 #kisslinux midfavila https://0x0.st/-mkp.png 2021-04-27T18:22:30 #kisslinux that file was "~/.thumbnails/normal/fc68412132e3f63a580f99ef9c9eae3b.png" 2021-04-27T18:23:03 #kisslinux hm... 2021-04-27T18:23:25 #kisslinux I read the XDG spec posted earlier and it talks about Thumb:: tags, but I've never seen a PNG image with anything like that embedded 2021-04-27T18:23:57 #kisslinux and another worrying thing is that after making a compliant thumbnail using imagemagick, the patched gtk2 still isn't displaying it... 2021-04-27T18:24:28 #kisslinux here's the original file: https://0x0.st/-mkV.jpg 2021-04-27T18:25:54 #kisslinux it was under "/home/sandy/downloads/wild_west_plane.jpg" if that helps with the hash generation 2021-04-27T18:27:29 #kisslinux i don't know if 0x0.st does any metadata stripping, i don't /think/ they do... 2021-04-27T18:29:47 #kisslinux man, wayfire is super cute 2021-04-27T18:29:53 #kisslinux all the fancy effects!! 2021-04-27T18:31:25 #kisslinux hmmmm.... 2021-04-27T18:31:43 #kisslinux any luck? 2021-04-27T18:31:47 #kisslinux no 2021-04-27T18:31:54 #kisslinux gonna try generating it at higher sizes 2021-04-27T18:35:53 #kisslinux here's the hexdump of the thumbnail: http://ix.io/3gsf 2021-04-27T18:36:52 #kisslinux it has Thumb::URI and Thumb:MTime 2021-04-27T18:36:58 #kisslinux yeah, I saw 2021-04-27T18:37:11 #kisslinux i'll compare that to a hexdump of the image I have 2021-04-27T18:39:35 #kisslinux yeah, it looks like 0x0.st must be stripping metadata 2021-04-27T18:39:45 #kisslinux the hexdump on my end has no mention of thumb or anything similiar 2021-04-27T18:39:48 #kisslinux * midfavila groans 2021-04-27T18:42:42 #kisslinux yeah, no, I'm not willing to generate and apply exif data using shell 2021-04-27T18:42:55 #kisslinux i don't even know if it uses dbus to generate it, or if it uses dbus to *load* it 2021-04-27T18:44:34 #kisslinux I surrender, XDG. You win 2021-04-27T18:44:43 #kisslinux i think an app sends a signal to dbus to alert a thumbnailer service to generate it and then dbus uses a callback to tell the signaller when the thumbnail is done? 2021-04-27T18:45:10 #kisslinux which means that the program probably waits for that second signal before attempting to access the resource 2021-04-27T18:45:22 #kisslinux yup i'd agree 2021-04-27T18:45:35 #kisslinux shit, it probably wouldn't even wait 2021-04-27T18:45:43 #kisslinux if the first signal fails it just assumes it doesn't have access to dbus 2021-04-27T18:45:58 #kisslinux which means there's literally no way to have thumbnails in gtk without dbus, as is 2021-04-27T18:46:01 #kisslinux or has a placeholder image it uses until a callback comes in 2021-04-27T18:46:08 #kisslinux * midfavila groooooooooooooooooooooooooooooans 2021-04-27T18:46:49 #kisslinux my only hope now is stlwrt 2021-04-27T18:46:52 #kisslinux i don't know if the apps do any verification on the loading side (after callback) or if they just load whatever filename dbus spits out 2021-04-27T18:47:35 #kisslinux may stlwrt save us from the plague that is dbus 2021-04-27T18:47:41 #kisslinux i still don't understand why gtk wouldn't just include ffmpeg as a optional dep 2021-04-27T18:47:51 #kisslinux generate a function to use ffmpeg to generate audiovisual thumbnails 2021-04-27T18:47:53 #kisslinux and then call that 2021-04-27T18:48:24 #kisslinux actually, no, I know exactly why they don't do that 2021-04-27T18:48:27 #kisslinux because that's too fucking simple 2021-04-27T18:49:03 #kisslinux hahahaha, really though whenever i see these things implemented with dbus, i just can't understand the motivation 2021-04-27T18:49:10 #kisslinux seems needlessly complicated for such a function 2021-04-27T18:49:24 #kisslinux b-b-b-b-b-b-b-b-b-b-b-b-b-but muh eyepeesee! 2021-04-27T18:49:40 #kisslinux "do one thing and do it well" -- generating thumbnails is not part of that "one thing", so you have to let something else do that and communicate over an IPC bus (a third thing) to do that one thing 2021-04-27T18:49:49 #kisslinux let's ignore that there's at least *three* options for IPC under UNIX... 2021-04-27T18:50:00 #kisslinux and that's why I said it should be *optional*, ominous 2021-04-27T18:50:18 #kisslinux i'm not saying make gtk compute that stuff itself 2021-04-27T18:50:21 #kisslinux e.g copy paste the code 2021-04-27T18:50:34 #kisslinux use ffmpeg to do it 2021-04-27T18:50:35 #kisslinux oh i'm agreeing with you 2021-04-27T18:50:39 #kisslinux oh 2021-04-27T18:50:42 #kisslinux * midfavila facedesks 2021-04-27T18:51:00 #kisslinux there's ways they could've made it a lot more portable, but they chose to tie themselves to dbus 2021-04-27T18:51:07 #kisslinux FVWM is going to be implementing its own IPC 2021-04-27T18:51:09 #kisslinux which is amusing 2021-04-27T18:51:54 #kisslinux it's called "Cap'n Proto!" 2021-04-27T18:53:03 #kisslinux or, well, technically it's a data serialization protocol 2021-04-27T18:53:07 #kisslinux but whatever 2021-04-27T18:53:40 #kisslinux for... what? saving window states or something? 2021-04-27T18:54:45 #kisslinux for whatever you want 2021-04-27T18:54:59 #kisslinux yeah, if it's anything like sway/i3's ipc, the sky's the limit ;d 2021-04-27T18:55:10 #kisslinux like 2021-04-27T18:55:18 #kisslinux i wouldn't be surprising if FVWM was turing complete 2021-04-27T18:55:19 #kisslinux lmao 2021-04-27T18:55:34 #kisslinux https://capnproto.org/ this reads like an april fool's joke lol 2021-04-27T18:55:53 #kisslinux well, apparently it's a thing 2021-04-27T18:57:33 #kisslinux oof, when i read "binary" it triggers my systemd journald related trauma 2021-04-27T18:57:38 #kisslinux apparently FVWM can use Go to generate a debugging interface too 2021-04-27T18:57:41 #kisslinux which is hilarious 2021-04-27T18:57:58 #kisslinux a window manager, written in C, extended in Perl, using Ruby to generate docs, and Go for a debugger 2021-04-27T18:58:01 #kisslinux like 2021-04-27T18:58:06 #kisslinux do you have enough fucking languages 2021-04-27T18:58:17 #kisslinux oh, and we can't forget the pipe out to shell 2021-04-27T18:58:20 #kisslinux so that's at least five 2021-04-27T18:58:27 #kisslinux and it has support for Tcl/Tk, so that's six 2021-04-27T18:59:07 #kisslinux anyway gtg 2021-04-27T18:59:15 #kisslinux cu 2021-04-27T20:57:47 #kisslinux i'm doing a live stick of KISS as discussed earlier. once it's done, could i technically just backup the whole thing into a tarball and just deploy that again on the same usb stick if i had deleted its contents? 2021-04-27T20:58:03 #kisslinux this is more of a general linux question i think 2021-04-27T20:58:20 #kisslinux it's UEFI 2021-04-27T21:06:26 #kisslinux scheiss schnell 2021-04-27T21:06:41 #kisslinux lol, wrong chan 2021-04-27T21:06:45 #kisslinux lmao 2021-04-27T21:07:40 #kisslinux yabobay: you should be able to do that 2021-04-27T21:08:13 #kisslinux but depending on what "deleted its contents" means, you might have to change boot entries and fstab 2021-04-27T21:08:28 #kisslinux oh yeah, with the same partitions 2021-04-27T21:08:40 #kisslinux just for like, if i mess with the system too much 2021-04-27T21:08:45 #kisslinux i can revert to the old one 2021-04-27T21:09:15 #kisslinux that should require no extra effort apart from unpacking the tarball into it right? 2021-04-27T21:13:03 #kisslinux if you packed everything up correctly (permissions), it should work 2021-04-27T21:14:16 #kisslinux oh yeah im gonna have to look up how to do that stuff 2021-04-27T21:14:44 #kisslinux I wouldn't know of the top of my head either 2021-04-27T21:15:13 #kisslinux i mainly use 7z so i *definitely* cant use that for this 2021-04-27T21:16:48 #kisslinux btw unrelated, what does "kiss orphans" do? i dont get it. is it the same thing as "kiss repo-orphans"? 2021-04-27T21:19:30 #kisslinux repo-orphans shows packages which are not in any of your repos anymore 2021-04-27T21:19:51 #kisslinux which can happen when packages get dropped by the maintainer for instance 2021-04-27T21:20:54 #kisslinux i get that, so what does the `orphans` command do? 2021-04-27T21:21:10 #kisslinux normal orphans are just packages which are not a dependency of any other package 2021-04-27T21:21:38 #kisslinux does that list include explicitly-installed packages? 2021-04-27T21:21:44 #kisslinux yes 2021-04-27T21:22:10 #kisslinux hmm 2021-04-27T21:22:13 #kisslinux you just gotta know your packages to figure out actual orphans from that list 2021-04-27T21:22:46 #kisslinux i figure that wouldn't be a lot of effort for the typical kiss linux user but i would probably be having a fewwww more packages 2021-04-27T21:27:34 #kisslinux you can also recursively grep in all depend files to figure out if a certain package is an actual dependency or not 2021-04-27T21:28:04 #kisslinux i'm looking at this kiss-rmdeps script and i'll probably use it but it's not quiteeee what i want 2021-04-27T21:29:57 #kisslinux btw, anyone know if networkmanager is packaged anywhere? 2021-04-27T21:36:17 #kisslinux networkmanager is in https://github.com/dilyn-corner/KISS-kde , but I'm not sure if the build currently works 2021-04-27T21:37:03 #kisslinux plus i'm not sure if i'm interested in turning on a kde repo just for nm 2021-04-27T21:38:41 #kisslinux I don't think it actually depends on kde stuff; I think perhaps its there because there are other packages in that repo that depend on it (maybe optionally) 2021-04-27T21:38:58 #kisslinux but yeah, I found that wpa_supplicant works just fine in my use case 2021-04-27T21:39:37 #kisslinux for me i was never able to get it working on anything 2021-04-27T21:39:44 #kisslinux i will try it again before trying to get nm tho 2021-04-27T21:42:47 #kisslinux i'm trying to quickly package something for myself, and i wanna know if i'm supposed to use the full url in "sources" or use the version variable in place of the version in the url? 2021-04-27T21:42:51 #kisslinux what's the style standard 2021-04-27T21:44:49 #kisslinux https://k1sslinux.org/wiki/kiss/style-guide 2021-04-27T21:46:38 #kisslinux doesn't say anything like that so i guess i dont do it 2021-04-27T21:47:58 #kisslinux nm is in that repo because if you want KDE you probably want nm 2021-04-27T21:48:20 #kisslinux it 'should' work, but who really knows. eudaldgr might, they have provided patches. so I'd assume it works at least a little 2021-04-27T21:48:53 #kisslinux in OTHER news, you guys ever rebuild an entire GCC system and then forget which of your terminals was in the chroot and then install every single binary to your wyverkiss system? that was a fun thing to recover from 2021-04-27T21:49:34 #kisslinux idk, I tried to build it once w/o the kde stuff and I couldn't get 75% of stuff in that repo to build :P 2021-04-27T21:49:43 #kisslinux oho jeez 2021-04-27T21:50:02 #kisslinux the sources file does not respect $2 (version), so use the full URL 2021-04-27T21:50:43 #kisslinux the only reason i even thought to ask was because - of course - bonsai 2021-04-27T21:51:27 #kisslinux it would work if we, say, built the sources file *into* the build file 2021-04-27T21:52:02 #kisslinux oh yeah in bOnsAi it was all one file if i remember correctly 2021-04-27T21:52:19 #kisslinux yeah most (all?) other package managers just use the one file... 2021-04-27T21:52:29 #kisslinux apkbuilds, pkgbuilds, whateverbuilds... 2021-04-27T21:52:40 #kisslinux still it was like 5 lines 2021-04-27T21:52:55 #kisslinux is there a tangible unix philosophy *need* for having it be separate files? 2021-04-27T21:53:16 #kisslinux im not trynna provoke or debate it im just curious 2021-04-27T21:53:37 #kisslinux one reason I prefer it this way is clarity 2021-04-27T21:53:47 #kisslinux for instance, imagine cbindgen's sources list being in `build` 2021-04-27T21:53:58 #kisslinux in my oppinion, the way it is done in kiss is way more readable 2021-04-27T21:54:35 #kisslinux oh yeah like if something has multiple sources? 2021-04-27T21:54:37 #kisslinux yeah i get that 2021-04-27T21:55:46 #kisslinux i could've picked something that *wasn't* from 2009 as my first thing to package, i have no idea how to compile this 2021-04-27T21:56:09 #kisslinux what are you trying to package? 2021-04-27T21:56:16 #kisslinux microemacs 2021-04-27T21:57:23 #kisslinux and i have a sneaking suspicion that this is mainly for DOS too and unix on the side 2021-04-27T21:58:35 #kisslinux maybe take a look at this file under 1.2: https://www.aquest.com/emacs.pdf 2021-04-27T21:59:18 #kisslinux aquest.com? i cant even tell where this software comes from wow 2021-04-27T22:00:17 #kisslinux was the website linked in the wikipedia article, so I took a guess^^ 2021-04-27T22:00:27 #kisslinux but why microemacs and not emacs? 2021-04-27T22:00:58 #kisslinux not emacs because i will install that later 2021-04-27T22:01:02 #kisslinux this is just right now for while i install 2021-04-27T22:01:21 #kisslinux plus i dont think i saw an emacs-nox package and i dont wanna pull all those dependencies yet 2021-04-27T22:02:11 #kisslinux i guess i could see whatever AUR does 2021-04-27T22:02:30 #kisslinux we used to have one 2021-04-27T22:02:40 #kisslinux but then? 2021-04-27T22:02:44 #kisslinux yes, aur is a good resource. arch pkgbuilds too 2021-04-27T22:03:00 #kisslinux e28f1070b2db4a209b23d76b9a10443716b1c8c4 2021-04-27T22:03:07 #kisslinux the AUR uses the kernel.org version 2021-04-27T22:03:09 #kisslinux reasons. you can revert that commit to get it back 2021-04-27T22:11:41 #kisslinux aha! i have compiled mg, which will do 2021-04-27T22:14:16 #kisslinux dude if i wanna provide packages, i'm gonna have to learn git ughhh 2021-04-27T22:18:47 #kisslinux rip touchpad after 48 days uptime 2021-04-27T22:20:03 #kisslinux if something is a dependency for compile time AND run time, do i list it as a compile time dependency or a runtime dependency? 2021-04-27T22:27:17 #kisslinux the latter, i.e. don't prefix with make 2021-04-27T22:27:44 #kisslinux oh okay 2021-04-27T22:30:18 #kisslinux actually, I'm not sure anymore 2021-04-27T22:30:47 #kisslinux uh-oh 2021-04-27T22:33:23 #kisslinux https://github.com/kiss-community/kiss/blob/master/kiss#L1240-L1241 2021-04-27T22:36:18 #kisslinux yeah, I was right 2021-04-27T22:42:10 #kisslinux im trynna compile libbsd and its spitting weird errors and they dont have much documentation and i dont think there's any place i can go to ask for help specifically for this library so can i just ask here 2021-04-27T22:42:22 #kisslinux and/or where else can i ask these sorts of things 2021-04-27T22:50:08 #kisslinux dont ask to ask questions. just ask, if this is not the right channel people would point that out 2021-04-27T22:53:21 #kisslinux ok so 2021-04-27T22:53:55 #kisslinux https://pastebin.com/ekssEifM : this is the output of ./configure and make on libbsd 0.10.0 under opensuse. can anyone explain what is going on? 2021-04-27T22:56:22 #kisslinux doesnt look wring to me, or is something not working? you mentioned weird errors? 2021-04-27T22:56:37 #kisslinux s/wring/wrong 2021-04-27T22:56:50 #kisslinux the output of make doesnt actually do anything 2021-04-27T22:56:59 #kisslinux it gets into a directory, says "welp idk" and leaves 2021-04-27T22:58:33 #kisslinux truly a mystery for the ages 2021-04-27T23:01:51 #kisslinux i am trying to compile it, but i get a whole different error.... 2021-04-27T23:02:04 #kisslinux what do you get? 2021-04-27T23:02:19 #kisslinux 'configure: error: cannot find required MD5 functions in libc or libmd' 2021-04-27T23:02:25 #kisslinux oh yeah 2021-04-27T23:02:29 #kisslinux i had that using the latest version 2021-04-27T23:03:04 #kisslinux i didnt try the latest version first cause 0.10.0 was what my distro uses and it works for compiling mg so i figured it should work right? 2021-04-27T23:03:06 #kisslinux yep, the older version works 2021-04-27T23:03:15 #kisslinux wait does it compile? 2021-04-27T23:03:31 #kisslinux yes, it compiles 2021-04-27T23:03:35 #kisslinux huh 2021-04-27T23:03:40 #kisslinux i assume you're running kiss linux? 2021-04-27T23:03:49 #kisslinux to do this task i mean 2021-04-27T23:04:09 #kisslinux yes, tho the glibc version of it. in the arch packagbuild it lists glibc as a dependency, so maybe that? 2021-04-27T23:04:39 #kisslinux you would want https://pkgs.alpinelinux.org/package/edge/main/x86_64/libmd 2021-04-27T23:04:46 #kisslinux presumably glibc implements this, and musl does not 2021-04-27T23:04:55 #kisslinux hm. 2021-04-27T23:05:04 #kisslinux but my opensuse thing definitely has glibc i think 2021-04-27T23:05:15 #kisslinux so it should've worked on that? 2021-04-27T23:05:23 #kisslinux i mean 2021-04-27T23:05:29 #kisslinux i have no idea what SuSE does 2021-04-27T23:05:42 #kisslinux so maybe(tm) 2021-04-27T23:05:49 #kisslinux im gonna try to install libmd as well then 2021-04-27T23:06:00 #kisslinux it is in the same dir as is the libbsd release 2021-04-27T23:08:14 #kisslinux libmd makes the same errors 2021-04-27T23:08:30 #kisslinux im gonna try libmd on kiss 2021-04-27T23:09:25 #kisslinux maybe try the thing from apline that dilyn send 2021-04-27T23:09:47 #kisslinux i mean 2021-04-27T23:09:51 #kisslinux that's what i *think* im doing 2021-04-27T23:10:38 #kisslinux why do you need libbsd anyways? 2021-04-27T23:10:43 #kisslinux for mg 2021-04-27T23:10:45 #kisslinux aah 2021-04-27T23:11:20 #kisslinux i could just find a different emacs to port but i wanna exhaust everything i (you) can think of first because why not 2021-04-27T23:14:23 #kisslinux i'm just gonna find a different emacs to port 2021-04-27T23:14:48 #kisslinux that was quick^^ 2021-04-27T23:14:52 #kisslinux lmao 2021-04-27T23:15:18 #kisslinux i mean, i dont have any other ideas 2021-04-27T23:15:21 #kisslinux do you? 2021-04-27T23:16:07 #kisslinux aha, i will port joe editor 2021-04-27T23:16:16 #kisslinux it has a emacs-like mode 2021-04-27T23:16:49 #kisslinux uh-ohhh sourceforge how am i gonna make this download on kiss 2021-04-27T23:18:32 #kisslinux maybe copy the donwload link, that your browser uses to download the file? 2021-04-27T23:18:52 #kisslinux it's some weird browser-y stuff, not a direct link to a file 2021-04-27T23:18:56 #kisslinux why would anyone do this 2021-04-27T23:20:44 #kisslinux kiss linux has made me stay up until 2AM for 3 consecutive days 2021-04-27T23:21:27 #kisslinux Me too, isnt it magical 2021-04-27T23:22:02 #kisslinux more like keep it stupid linux >:(((( 2021-04-27T23:23:00 #kisslinux Huh? 2021-04-27T23:23:05 #kisslinux idk 2021-04-27T23:23:23 #kisslinux joe editor doesnt compile anyway 2021-04-27T23:24:18 #kisslinux okay back 2021-04-27T23:24:27 #kisslinux had to buy groceries and make more responsible financial decisions 2021-04-27T23:24:40 #kisslinux I get yhay that is frustrating. Whats the problem now yabobay? 2021-04-27T23:26:01 #kisslinux i dont even know,, i closed the terminal anyway. im just gonna get nano or something tomorrow 2021-04-27T23:26:06 #kisslinux i kinda just wanna go to sleep now 2021-04-27T23:26:30 #kisslinux prolly gonna stick with vi for the remainder of installing kiss linux 2021-04-27T23:26:46 #kisslinux Alright. Then have a good night 2021-04-27T23:27:19 #kisslinux thanks 2021-04-27T23:27:47 #kisslinux i've never given up on a goal so abruptly and completely. does this mean im growing up 2021-04-27T23:28:32 #kisslinux Thats a little far fetched. Maybe you are just tired and frustrated, that nothing worked. Just sleep a night over it 2021-04-27T23:29:33 #kisslinux yeah true. im gonna go now. i always had the misconception that irc was now all about just getting the work done and nothing else, but y'all are nice. cya 2021-04-27T23:29:54 #kisslinux I have been in that situation. My polybar wouldnt build and I didnt know why, got frustrated. But then I decided to go to sleep and fogured it out in the morning 2021-04-27T23:30:20 #kisslinux Thanks :) Sleep well 2021-04-27T23:30:25 #kisslinux oh im prolly not gonna work on it more tomorrow tho 2021-04-27T23:30:29 #kisslinux maybe at a later time 2021-04-27T23:30:45 #kisslinux and if i do i'll just look for a different emacs 2021-04-27T23:32:01 #kisslinux oh MY GOD 2021-04-27T23:32:03 #kisslinux 144hz is so smooth 2021-04-27T23:32:13 #kisslinux why is setting this refresh rate so easy in xorg smh 2021-04-27T23:32:36 #kisslinux I want a new monitor... 2021-04-27T23:32:49 #kisslinux But I cant really justify it... 2021-04-27T23:35:58 #kisslinux honestly high refresh rate is nice 2021-04-27T23:36:09 #kisslinux but I'd take higher resolution and greater color accuracy myself 2021-04-27T23:36:58 #kisslinux i'd been living on 60hz for so long, I had no idea what I was missing 2021-04-27T23:37:05 #kisslinux why only choose one mid? 2021-04-27T23:37:07 #kisslinux I chose all 3 :v 2021-04-27T23:37:42 #kisslinux lol same, love my monitor 2021-04-27T23:38:08 #kisslinux because all three is extremely expensive 2021-04-27T23:38:20 #kisslinux and I already spend an unhealthy amount of money on computer equipment 2021-04-27T23:38:40 #kisslinux i dropped another sixty today on a set of stereo bookshelf speakers and a decent external amp-thing 2021-04-27T23:38:48 #kisslinux (amp-thing is the technical term) 2021-04-27T23:39:03 #kisslinux only $60?? 2021-04-27T23:39:12 #kisslinux my amp cost more than $60 s m h 2021-04-27T23:39:31 #kisslinux what speakers? 2021-04-27T23:39:40 #kisslinux some older sanyo ones 2021-04-27T23:39:52 #kisslinux they're nothing amazing, but they're acceptable. loud and fairly clear 2021-04-27T23:40:13 #kisslinux the central unit they connect to is nifty. has a built in cassette player and CD player, plus an AM and FM radio 2021-04-27T23:40:43 #kisslinux not very unixy 2021-04-27T23:40:46 #kisslinux and connectors for additional speakers, so you can do full surround sound if you really wanted. and there's headphone passthrough, too, which is killer 2021-04-27T23:41:10 #kisslinux https://cdn.discordapp.com/attachments/810270548999274506/836742434095890502/IMG_20210427_201228.jpg 2021-04-27T23:41:16 #kisslinux pardon the awful photo quality 2021-04-27T23:41:27 #kisslinux my phone's camera is... 2021-04-27T23:41:30 #kisslinux er... it exists. 2021-04-27T23:41:54 #kisslinux classic look 2021-04-27T23:42:14 #kisslinux that whole aesthetic is giving me great-grandma vibes 2021-04-27T23:42:27 #kisslinux i'm kind of going for the techy-boomer aesthetic 2021-04-27T23:42:56 #kisslinux i just need a cat clock and a bookshelf 2021-04-27T23:43:01 #kisslinux and it will be complete 2021-04-27T23:43:55 #kisslinux Alright, Im off for today. Bye 2021-04-27T23:43:57 #kisslinux you're so committed to your identity i love it 2021-04-27T23:43:59 #kisslinux gngn zenomat 2021-04-27T23:44:47 #kisslinux comfiness is of maximal importance to me 2021-04-27T23:45:16 #kisslinux i must be lucky that i find minimalism comfy 2021-04-27T23:46:01 #kisslinux see, 2021-04-27T23:46:04 #kisslinux here's the thing 2021-04-27T23:46:10 #kisslinux i would consider my setup largely "minimalist" 2021-04-27T23:46:15 #kisslinux because nothing is there without a purpose 2021-04-27T23:46:35 #kisslinux that just means it's like, efficacious 2021-04-27T23:46:59 #kisslinux minimalism is like 'i only own one spoon because *i only need the one*' 2021-04-27T23:48:24 #kisslinux i mean, to an extent, sure 2021-04-27T23:48:41 #kisslinux but I don't think minimalism is about stripping away everything that isn't *purely* necessary 2021-04-27T23:48:47 #kisslinux i'd call that asceticism 2021-04-27T23:48:49 #kisslinux `WARNING: Nodejs is required to build QtWebEngine.` what the fricken frack qt 2021-04-27T23:48:59 #kisslinux reminder that qt tribe bad 2021-04-27T23:49:02 #kisslinux :( 2021-04-27T23:49:02 #kisslinux this is a reminder from gtk tribe 2021-04-27T23:49:33 #kisslinux minimalists just wouldn't see the function in having five spoons in a two-person household 2021-04-27T23:49:43 #kisslinux but i take your point. it's a fine line. 2021-04-27T23:50:03 #kisslinux * midfavila nods 2021-04-27T23:50:16 #kisslinux i think I'm somewhere between meme minimalism and pragmatism 2021-04-27T23:50:22 #kisslinux https://github.com/emersion/kanshi/blob/master/kanshi.5.scd it IS just as easy on wayland. haha, suckers 2021-04-27T23:50:32 #kisslinux for sure. that's how I take it 2021-04-27T23:50:33 #kisslinux bare minimum to get a job done in a comfortable fashion 2021-04-27T23:50:53 #kisslinux for instance, I only own one pair of speakers. but they're seven hundred dollar speakers 2021-04-27T23:51:01 #kisslinux and i will never need anything more, forever 2021-04-27T23:51:47 #kisslinux i'd invest in better speakers, but I've never had external speakers before 2021-04-27T23:51:51 #kisslinux so I wanted to see if they were worth it 2021-04-27T23:51:58 #kisslinux before I dropped 10x the price 2021-04-27T23:52:06 #kisslinux usually 2021-04-27T23:52:29 #kisslinux i couldn't use speakers for years because if they were even a sliver over muted my stepdad would yell at me for having them up too loud :v so six years without speakers :'( 2021-04-27T23:52:29 #kisslinux actually no 2021-04-27T23:52:30 #kisslinux wait 2021-04-27T23:52:35 #kisslinux that's a lie 2021-04-27T23:52:40 #kisslinux i had dell speakers when I was like 2021-04-27T23:52:41 #kisslinux five 2021-04-27T23:52:44 #kisslinux EW 2021-04-27T23:52:53 #kisslinux talk about asceticism 2021-04-27T23:53:06 #kisslinux i still remember one morning where I woke up early, snuck downstairs to log onto my PC at like 6:30AM 2021-04-27T23:53:14 #kisslinux forgot that the speakers were cranked to max volume 2021-04-27T23:53:16 #kisslinux turned my PC on 2021-04-27T23:53:30 #kisslinux aw jeez 2021-04-27T23:53:30 #kisslinux and was promptly woken up by the loudest windows XP bootup jingle in the history of man 2021-04-27T23:53:53 #kisslinux oh, although I'll say this 2021-04-27T23:53:58 #kisslinux i'm glad my soundcard has RCA jacks 2021-04-27T23:54:21 #kisslinux made hooking these speakers up ezpz 2021-04-27T23:56:13 #kisslinux only two complaints about them tbh 2021-04-27T23:56:27 #kisslinux one, the main unit is too tall (not a big deal) 2021-04-27T23:56:51 #kisslinux two, the speakers themselves sound somewhat muffled. not sure if they're blown-out or just not great. gemini://gemini.ctrl-c.club/~phoebos/logs/freenode-kisslinux-2021-04-27.txt

-- Leo's gemini proxy

-- Connecting to gemini.ctrl-c.club:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/plain; charset=utf-8

-- Response ended

-- Page fetched on Sun Jun 2 09:17:46 2024