2019-12-07T00:06:16 #kisslinux im seeing this acpid service 2019-12-07T00:06:39 #kisslinux but i don't remember acpid being installed 2019-12-07T00:15:29 #kisslinux ah it's busybox 2019-12-07T00:22:21 #kisslinux konimex: busybox acpid service doesn't start on my machine 2019-12-07T00:23:06 #kisslinux running the command manually (`sudo acpid -fl`) outputs this: 2019-12-07T00:28:22 #kisslinux `acpid: option requires an argument: l` 2019-12-07T10:51:16 #kisslinux seems anything busybox requires some kind of config 2019-12-07T10:51:54 #kisslinux dhcp,and now acpi 2019-12-07T10:57:40 #kisslinux actually, two secs 2019-12-07T11:25:16 #kisslinux sent a PR 2019-12-07T12:03:23 #kisslinux is busybox acpid still supported by the latest kernel? 2019-12-07T12:04:52 #kisslinux See: https://github.com/kisslinux/repo/pull/124 2019-12-07T12:04:56 #kisslinux I don't see why not. 2019-12-07T12:22:35 #kisslinux nothing appears in the log when i press the micmute function key 2019-12-07T12:23:25 #kisslinux however, native acpid detects it 2019-12-07T12:31:55 #kisslinux Have you looked at: https://github.com/brgl/busybox/blob/master/util-linux/acpid.c#L9-L30 2019-12-07T12:32:41 #kisslinux Did you look at this too?: http://davidrosca.blogspot.com/2012/08/linux-on-x220-getting-microphone-mute.html 2019-12-07T12:37:50 #kisslinux i got no help from the first link 2019-12-07T12:38:22 #kisslinux second one uses the native acpid 2019-12-07T12:39:21 #kisslinux i think i got it 2019-12-07T12:39:55 #kisslinux https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1654827 2019-12-07T12:40:54 #kisslinux and http://www.murga-linux.com/puppy/viewtopic.php?t=78719 2019-12-07T12:42:47 #kisslinux yep, it's working 2019-12-07T12:50:54 #kisslinux it basically uses keycodes from /usr/include/linux/input-event-codes.h 2019-12-07T12:56:57 #kisslinux Nice. 2019-12-07T12:57:05 #kisslinux Write a wiki page if you're willing. :) 2019-12-07T12:58:15 #kisslinux I would love to. :D 2019-12-07T12:59:41 #kisslinux I might start doing it tomorrow. Compiling firefox and friends toasted my laptop so I wanna give it a rest. 2019-12-07T13:23:37 #kisslinux Heh 2019-12-07T13:56:46 #kisslinux hi o/ 2019-12-07T14:07:48 #kisslinux Hello 2019-12-07T16:51:27 #kisslinux dylanaraps, I get the following error on running iwd 2019-12-07T16:51:30 #kisslinux https://pst.moe/paste/bdwhxt 2019-12-07T16:51:42 #kisslinux I have those options set to "y" in my kernel config 2019-12-07T17:19:16 #kisslinux What does kiss use to manage services? 2019-12-07T17:20:31 #kisslinux Also, how does busybox compare to runit in terms of features, performance/init times? 2019-12-07T17:20:39 #kisslinux busybox init* 2019-12-07T17:55:55 #kisslinux qtpie: Are you using any modules? 2019-12-07T17:56:00 #kisslinux Also, do you have them all enabled? 2019-12-07T17:57:00 #kisslinux andrevallestero[: busybox has its own runit implementation for services. 2019-12-07T17:57:14 #kisslinux KISS uses it by default though nothing forces you to stick with it. 2019-12-07T17:57:35 #kisslinux I personally use no service manager as the only daemon I run is iwd. 2019-12-07T19:02:14 #kisslinux dylanaraps, yes I use iwlwifi. this is the output of make modules_install for me -> https://pst.moe/paste/xfekns 2019-12-07T19:04:39 #kisslinux dylanaraps, also as you can see here -> https://files.catbox.moe/zskdj0.png, HMAC and CMAC are enabled but iwd shows them as missing 2019-12-07T19:06:42 #kisslinux The issue is most likely the mix between iwlwifi being =m and the crypto stuff being =y. 2019-12-07T19:07:11 #kisslinux Try compiling iwlwifi as =y. If you need firmware blobs you can also compile them into the kernel. 2019-12-07T19:07:38 #kisslinux Example: 2019-12-07T19:07:40 #kisslinux -> zgrep CONFIG_EXTRA_FIRMWARE /proc/config.gz 2019-12-07T19:07:42 #kisslinux CONFIG_EXTRA_FIRMWARE="i915/skl_dmc_ver1_27.bin iwlwifi-8000C-36.ucode" 2019-12-07T19:07:44 #kisslinux CONFIG_EXTRA_FIRMWARE_DIR="/lib/firmware" 2019-12-07T19:08:29 #kisslinux So the .ucode ile would live in /lib/firmware and on `make` will be put into the kernel itself. 2019-12-07T19:08:43 #kisslinux The other alternative is to compile all of the crypto stuff as modules. 2019-12-07T19:10:41 #kisslinux i see 2019-12-07T19:10:57 #kisslinux what is the difference between _*_ , <*> and [*] btw? 2019-12-07T19:11:12 #kisslinux i can unselect <> and [] but I can't seem to unselect _*_ 2019-12-07T19:11:28 #kisslinux <*> and _*_ are typically things enabled as dependencies of other options or things needed on your system. 2019-12-07T19:11:45 #kisslinux ah i see 2019-12-07T19:11:56 #kisslinux Let me see exactly what they are. 2019-12-07T19:12:08 #kisslinux > - - A dependency requires this to be compiled-in (y). 2019-12-07T19:12:15 #kisslinux > { } A dependency requires this to be a module (m) or compiled-in (y). 2019-12-07T19:12:20 #kisslinux > [ ] A dependency requires this to be compiled-in (y), or not compiled (n). 2019-12-07T19:12:24 #kisslinux > < > No dependencies. 2019-12-07T19:12:36 #kisslinux https://en.wikipedia.org/wiki/Menuconfig 2019-12-07T19:12:41 #kisslinux thanks 2019-12-07T19:12:55 #kisslinux i was looking iwd's gentoo wiki here https://wiki.gentoo.org/wiki/Iwd#Installation 2019-12-07T19:13:23 #kisslinux they have "User-space interface for symmetric key cipher algorithm" enabled 2019-12-07T19:13:34 #kisslinux i have that disabled in my config 2019-12-07T19:14:04 #kisslinux Try that too actually. 2019-12-07T19:14:09 #kisslinux yeah 2019-12-07T19:14:22 #kisslinux I'm hoping I'm wrong as it means less work for you. :P 2019-12-07T19:14:27 #kisslinux https://wiki.gentoo.org/wiki/Iwlwifi#When_using_built-in_configuration 2019-12-07T19:14:36 #kisslinux i was actually resolving this issue a while ago 2019-12-07T19:14:41 #kisslinux as I have iwlwifi as well 2019-12-07T19:15:06 #kisslinux turns out that if you enable iwlwifi as =y, it just doesn't work because it is incapable of loading firmware 2019-12-07T19:15:11 #kisslinux I also use it though I compile everything into the kernel (no modules). 2019-12-07T19:15:21 #kisslinux belfry: I also compile my firmware into the kernel. 2019-12-07T19:15:36 #kisslinux I posted my .config options related to it above. 2019-12-07T19:16:05 #kisslinux ah, I see, thanks, will add that to mine too 2019-12-07T19:16:24 #kisslinux gotta get that chonky kernel feel :D 2019-12-07T19:16:27 #kisslinux It allows all of my kernels to be entirely standalone which is nice. 2019-12-07T19:16:49 #kisslinux s/standalone/stand-alone/ 2019-12-07T19:17:06 #kisslinux -> du -sh /boot/vmlinuz-5.4.8 2019-12-07T19:17:08 #kisslinux 4.3M /boot/vmlinuz-5.4.8 2019-12-07T19:17:12 #kisslinux Not bad :P 2019-12-07T19:18:47 #kisslinux I also compile my .config into the kernel so the current config is available as /proc/config.gz 2019-12-07T19:20:44 #kisslinux Getting my current config is as easy as: gzip -cd /proc/config.gz > .config 2019-12-07T19:21:25 #kisslinux hmm, I suppose I might have some useless modules, then, haha 2019-12-07T19:25:05 #kisslinux quick question, I am currently running KISS on f2fs (I just really wanted to try that filesystem out curiosity), if I'd like to contribute a package for it, what would be the correct repository? 2019-12-07T19:29:10 #kisslinux Community is a good start. 2019-12-07T19:29:24 #kisslinux Packages can be migrated to the other repositories afterwards. 2019-12-07T19:29:52 #kisslinux alrighty! 2019-12-07T19:33:12 #kisslinux i'm building my kernel with iwlwifi and blobs built in 2019-12-07T19:33:26 #kisslinux and i also enabled that option which the gentoo wiki specified 2019-12-07T19:35:09 #kisslinux I'm building 4.19 to see if it stops Firefox from locking up. 2019-12-07T19:35:26 #kisslinux nice 2019-12-07T19:36:01 #kisslinux I also use a patch to build my kernel with -march=native 2019-12-07T19:36:15 #kisslinux For 5.4 I use 4~ patches overall. 2019-12-07T19:37:11 #kisslinux I can't speak for benchmarks or anything as I haven't done any. I'm happy with my system's performance though. 2019-12-07T19:39:00 #kisslinux -> du -sh vmlinuz 2019-12-07T19:39:02 #kisslinux 3.9M vmlinuz 2019-12-07T19:39:11 #kisslinux 400-500KB smaller on 4.19 2019-12-07T19:40:06 #kisslinux brb 2019-12-07T20:05:22 #kisslinux Firefox won't make Python 2's EOL :( 2019-12-07T20:05:34 #kisslinux We're stuck with Python 2 beyond its death date. 2019-12-07T20:21:05 #kisslinux that shit is annoying 2019-12-07T20:29:04 #kisslinux dylanaraps, iwd doesnt shows any kernel related errors now but it shows unable to open directory /var/lib/iwd/hotspot 2019-12-07T20:40:21 #kisslinux It needs to be run as root. 2019-12-07T21:22:26 #kisslinux it's working now 2019-12-07T21:22:46 #kisslinux btw can iwc handle 8021x networks? 2019-12-07T21:23:02 #kisslinux or does it only looks for psk files? 2019-12-07T21:28:00 #kisslinux iwc can only auth through .psk files (.open is pointless for obvious reasons). 8021X networks are actually meant to be connected to by hand (recommended by upstream). 2019-12-07T21:28:31 #kisslinux All network types are supported by the rest of the commands. 2019-12-07T21:28:57 #kisslinux Arch have info on their wiki: https://wiki.archlinux.org/index.php/Iwd#WPA_Enterprise 2019-12-07T21:29:21 #kisslinux (iwctl also has no support for auth for 8021X networks) 2019-12-07T21:30:19 #kisslinux I *could* add some sort of support to iwc. 2019-12-07T21:30:58 #kisslinux (The iwd daemon itself is unchanged minus the removal of dbus related code and some tiny additions for iwc) 2019-12-07T21:32:21 #kisslinux > Configuration for EAP is not done through a graphical interface, though; it is too complex for users to be able to realistically deal with it, so it will instead use a configuration file provided by the network administrator. 2019-12-07T21:32:25 #kisslinux https://lwn.net/Articles/770991/ 2019-12-07T21:43:29 #kisslinux yeah i read the archwiki and i have a working config 2019-12-07T21:43:52 #kisslinux what i meant was that if could disconnect from an 8021d network from iwc itself 2019-12-07T21:44:13 #kisslinux or maybe ask iwc to load a 8021x profile 2019-12-07T21:44:13 #kisslinux Yes 2019-12-07T21:44:35 #kisslinux Just give iwc the SSID 2019-12-07T21:45:00 #kisslinux iwc connect SSID (or iwc co SSID) 2019-12-07T21:45:11 #kisslinux iwc disconnect (or iwc di) 2019-12-07T21:45:20 #kisslinux Disconnect uses the current network. 2019-12-07T21:49:39 #kisslinux does iwd not handle dhcp? 2019-12-07T21:49:46 #kisslinux It does 2019-12-07T21:49:50 #kisslinux because i am not getting a local ip 2019-12-07T21:50:21 #kisslinux i can connect to networks and iwc successfuly handles both 8021 and psk networks 2019-12-07T21:50:23 #kisslinux You just need to enable it. 2019-12-07T21:50:34 #kisslinux In /etc/iwd/main.conf 2019-12-07T21:50:36 #kisslinux > EnableNetworkConfiguration=true 2019-12-07T21:50:48 #kisslinux Under '[General]' 2019-12-07T21:51:01 #kisslinux I'll send you my config actually. 2019-12-07T21:51:03 #kisslinux Hang on. 2019-12-07T21:51:45 #kisslinux https://termbin.com/7bjy 2019-12-07T21:52:46 #kisslinux KISS has 230~ votes on distrowatch's waiting list. 2019-12-07T21:52:51 #kisslinux > Further good news is that once your distro is listed on DistroWatch, it will apparently be also accepted for listing on Wikipedia. 2019-12-07T21:53:04 #kisslinux thanks 2019-12-07T21:53:10 #kisslinux > there is some good news for those developers who absolutely and desperately want to have their distribution listed on DistroWatch today. All you need to do is to buy an advertising banner and your distro will be listed straight away. 2019-12-07T21:53:39 #kisslinux > which costs US$220.00 2019-12-07T21:55:13 #kisslinux > New distributions should be installable on their own without requiring another distribution to be in place to bootstrap them. There should be an ISO or IMG file users can download, 2019-12-07T21:55:28 #kisslinux sad 2019-12-07T21:57:27 #kisslinux why is that sad? 2019-12-07T21:57:33 #kisslinux If the Wikipedia fact is true and as KISS is ineligible for addition to distrowatch, for KISS to get a Wikipedia page I need to pay distrowatch US$220. 2019-12-07T21:58:11 #kisslinux This is also only true if the payment waives the submission requirements. 2019-12-07T22:03:28 #kisslinux how is kiss ineligible? 2019-12-07T22:03:36 #kisslinux I thought it was on their 'waiting list' or whatever tf 2019-12-07T22:04:43 #kisslinux KISS needs an ISO/IMG file which can be used as an installation medium. 2019-12-07T22:05:23 #kisslinux why not have a fat kernel, busybox, plus kiss-chroot 2019-12-07T22:05:31 #kisslinux in an iso 2019-12-07T22:05:45 #kisslinux There's also a note about locale/language so I'm also unsure if the focus on only English is also a blocker. 2019-12-07T22:06:29 #kisslinux atkka: You'd also need an initramfs. 2019-12-07T22:06:54 #kisslinux Once booted I'd just make you download the same tarball regardless.. 2019-12-07T22:07:12 #kisslinux It also has to be easy enough to install for the distrowatch guys. 2019-12-07T22:07:23 #kisslinux ok, then the real question 2019-12-07T22:07:29 #kisslinux Anything they're unable to install doesn't get added. 2019-12-07T22:07:31 #kisslinux why even care about distrowatch at all 2019-12-07T22:08:04 #kisslinux It's more the Wikipedia comment which made me mention it. 2019-12-07T22:08:07 #kisslinux I highly doubt distrowatch can keep you from being on wikipedia unless you pay them or follow their arbitrary guidelines 2019-12-07T22:08:35 #kisslinux Wikipedia can though. If it is in their submission guidelines for Linux distributions. 2019-12-07T22:08:51 #kisslinux I'm looking on Wikipedia for something in writing. 2019-12-07T22:09:17 #kisslinux well you can always start kissipedia, with blackjack and hookers 2019-12-07T22:12:19 #kisslinux the one criteria that makes sense is not relying on another install to bootstrap 2019-12-07T22:13:47 #kisslinux It makes sense for distrowatch as they install, test and write a full review/page for each added distibution. 2019-12-07T22:16:31 #kisslinux > KISS Linux. KISS Linux is an independent Linux distribution with a focus on simplicity and privacy. The distribution currently targets the x86-64 architecture and the English language. KISS Linux is installed by building the system from an archive, using a process similar in style to Gentoo. 2019-12-07T22:16:50 #kisslinux Oddly enough, they're aware of the install method and added it anyway. 2019-12-07T22:16:56 #kisslinux Time will tell. :P 2019-12-07T22:17:10 #kisslinux https://distrowatch.com/weekly.php?issue=20190826#waiting 2019-12-07T22:22:55 #kisslinux <_0bitcount> Have you heard of Dragora? It is also based on minimalist principles, with a touch of Slackware. 2019-12-07T22:25:52 #kisslinux distrowatch is worthless anyway 2019-12-07T22:26:16 #kisslinux Yeah. It includes software like dbus, gettext, elogind, etc etc and it uses glibc. 2019-12-07T22:27:10 #kisslinux dragora3 musl based 2019-12-07T22:27:21 #kisslinux Neat 2019-12-07T22:27:24 #kisslinux Didn't know that 2019-12-07T22:27:34 #kisslinux and independent base that i know 2019-12-07T22:27:57 #kisslinux it has own bootstrap 2019-12-07T22:30:29 #kisslinux Their package manager is a little too complex for my liking (If they still use qi(?)) 2019-12-07T22:31:03 #kisslinux (Forgetting the unsafe shell code entirely) 2019-12-07T22:33:39 #kisslinux seeing test instead of [ in scripts is so saddening lol (I'm aware they're the same but it just looks so much worse) 2019-12-07T22:35:30 #kisslinux The repository files for each package (basically identical to PKGBUILDS, APKBUILDS, Pkgiles) are full of bash shell too. 2019-12-07T22:35:39 #kisslinux s/bash/bad 2019-12-07T22:36:35 #kisslinux qi bases on graft 2019-12-07T22:37:03 #kisslinux graft? 2019-12-07T22:37:15 #kisslinux Here's an example package fwiw: http://git.savannah.nongnu.org/cgit/dragora.git/tree/recipes/devel/python3/recipe 2019-12-07T22:37:21 #kisslinux qi, despite an sh shebang, uses $'' 2019-12-07T22:37:31 #kisslinux https://directory.fsf.org/wiki/Graft 2019-12-07T22:37:39 #kisslinux oh my god and it uses it to pipe into ed instead of using sed 2019-12-07T22:37:39 #kisslinux Compared to: https://github.com/kisslinux/repo/blob/master/extra/python/build 2019-12-07T22:37:41 #kisslinux wow 2019-12-07T22:38:02 #kisslinux echo ",s/^(release)=.*/1=${release}/"$'nw' | ed "${CWD}/$recipe" 2019-12-07T22:39:14 #kisslinux The shell is a language which makes it very easy to write really bad (and unsafe) code. 2019-12-07T22:40:41 #kisslinux It's the backbone of any distribution which builds its own packages. The code should be linted and written with some thought. 2019-12-07T22:41:17 #kisslinux I see too much shell which is written badly and kept that way because it works fine in the moment. 2019-12-07T22:43:04 #kisslinux I you treat the shell as a glue language, your code will be glue. 2019-12-07T22:43:10 #kisslinux s/I/If/ 2019-12-07T22:43:32 #kisslinux This comes to mind: https://github.com/valvesoftware/steam-for-linux/issues/3671 2019-12-07T22:45:34 #kisslinux oh it is really terrible.. 2019-12-07T22:45:53 #kisslinux the only problem I see with that ed line is not using -s and heredoc 2019-12-07T22:46:05 #kisslinux fuck sed -i gnuisms 2019-12-07T22:50:37 #kisslinux Dragora also needs to add a file to certain packages to specifically order their dependencies(?) http://git.savannah.nongnu.org/cgit/dragora.git/tree/recipes/libs/glib2/depends.order?id=a01843a9cf7f8cff971bd4c196552f84765617fb 2019-12-07T22:54:21 #kisslinux I wish 'sed -i' were POSIX, however it is something I'd like to remove the usage of from KISS. 2019-12-07T22:54:24 #kisslinux -> grep -r 'sed -i' core/ extra/ xorg/ | wc -l 2019-12-07T22:54:26 #kisslinux 18 2019-12-07T22:54:44 #kisslinux Simple enough change once I find a replacement I'm happy with. 2019-12-07T22:58:24 #kisslinux This is entirely to allow the user to replace busybox (or just busybox sed) with an alternative. 2019-12-07T22:59:00 #kisslinux E5ten: toybox perhaps ;) 2019-12-07T22:59:33 #kisslinux This will also require the addition of the tar command from libarchive among other things. 2019-12-07T23:00:12 #kisslinux It's low down on my list as I'm quite busy but it's something I'd like to at least think about for the future. 2019-12-07T23:00:30 #kisslinux does toybox also have a shell? 2019-12-07T23:00:54 #kisslinux I with busybox ash's vi mode had t and F :'( 2019-12-07T23:01:12 #kisslinux s/with/wish/ 2019-12-07T23:01:39 #kisslinux toybox does have a shell 2019-12-07T23:01:47 #kisslinux At least it says so here: http://landley.net/toybox/roadmap.html 2019-12-07T23:02:41 #kisslinux They'd most likely accept patches upstream for t/F (for busybox vi). 2019-12-07T23:03:19 #kisslinux yeah, looking at the code is on my todo 2019-12-07T23:03:24 #kisslinux busybox development is quite weird as there isn't a roadmap, goals etc. People just send patches in. 2019-12-07T23:03:24 #kisslinux toybox's shell is barely there 2019-12-07T23:03:28 #kisslinux my C sucks tho 2019-12-07T23:04:20 #kisslinux See this as a positive. You can get better at C by writing those patches. :) 2019-12-07T23:05:06 #kisslinux also true 2019-12-07T23:05:46 #kisslinux I'm off to bed. It's late. Ciao 2019-12-07T23:07:20 #kisslinux hey, anyone running kiss get dm-mod.creat working? 2019-12-07T23:07:43 #kisslinux unlocking encrypted drives at boot without initramfs 2019-12-07T23:08:51 #kisslinux as if toybox doesn't have sed -i 2019-12-07T23:09:21 #kisslinux speaking of bad shell code, have a look at alsa-info.sh 2019-12-07T23:09:27 #kisslinux part of alsa-utils 2019-12-07T23:09:36 #kisslinux tries to break the record of echo calls 2019-12-07T23:09:39 #kisslinux https://github.com/alsa-project/alsa-utils/pull/29 2019-12-07T23:10:00 #kisslinux haha, nice 2019-12-07T23:10:05 #kisslinux discovered it today 2019-12-07T23:14:25 #kisslinux what is the problem with echo? 2019-12-07T23:16:04 #kisslinux I was talking about the amount of echo calls 2019-12-07T23:16:40 #kisslinux most can be replaced by a single printf 2019-12-07T23:17:03 #kisslinux I actually didn't make that change cuz it felt excessive but I totally should 2019-12-07T23:18:58 #kisslinux multiple successive echos somehow reminds me of windows batch files 2019-12-07T23:22:05 #kisslinux oh fuck I also missed one of their ifs where they didn't add an indentation level 2019-12-07T23:22:20 #kisslinux I got most of the shitty lack of indentations level but I guess I wasn't thorough enough :( 2019-12-07T23:26:22 #kisslinux getting rid of the bash dep is totally good enough already 2019-12-07T23:27:34 #kisslinux it's not even a script I've ever used I just happened to notice how shit it was 2019-12-07T23:28:03 #kisslinux yeah, I found it today while auto completing alsa* 2019-12-07T23:28:39 #kisslinux I love that I spent fucking forever tediously making their garbage script less garbage and my PR has just sat their with no response 2019-12-07T23:28:49 #kisslinux there* 2019-12-07T23:28:58 #kisslinux yeah lol 2019-12-07T23:29:06 #kisslinux probably will just be ignored 2019-12-07T23:29:42 #kisslinux should've made a pull request with deletion of the file 2019-12-07T23:30:01 #kisslinux feel free to leave a comment saying something to the effect of "hey guys this script is shit you should really accept this PR" but maybe a bit nicer ;) 2019-12-07T23:30:59 #kisslinux deleted my account recently, otherwise I would do that 2019-12-07T23:31:21 #kisslinux now why would you go and do something silly like that lol 2019-12-07T23:31:45 #kisslinux I dont really do anything code really 2019-12-07T23:32:04 #kisslinux and for the little I do, I switched to gitlab 2019-12-07T23:33:02 #kisslinux I instinctively went to go "more like shitlab" but caught myself because I realized the name applies equally well on github :( 2019-12-07T23:34:47 #kisslinux hehe, Im not really into the feature differences 2019-12-07T23:34:50 #kisslinux not that I actually think gitlab is shit, just a bit 2019-12-07T23:35:03 #kisslinux just a bit as in "it was just a bit" not "just a bit shit" 2019-12-07T23:35:42 #kisslinux my main problem is that the gitlab website feels pretty slow at times 2019-12-07T23:36:24 #kisslinux but I wanted private repos to host dotfiles and some other personal stuff 2019-12-07T23:36:40 #kisslinux doesn't github have private repos for everyone now though? 2019-12-07T23:36:59 #kisslinux yeah, they added it after I switched