Finally, the year of the Linux desktop
Finally, the year of the Linux desktop
I read it as a jokey community and maybe you took it too seriously. Regardless that’s a kinda silly comment to leave. That’s a community for, ironically or seriously, hating Linux, so obviously it’s not in the spirit of the community to leave a serious comment defending Linux.
I see a lot of Windows hate on Lemmy. If someone made a post here complaining about how much they hate Windows, and a Windows fan replied explaining why Windows is so great, I would say it’s kinda heavy-handed but not totally ridiculous for a mod to ban them, since a Linux community is probably not for this person.
Everyone who disagrees with me is a paid russian troll of course. Nobody would oppose blacklisting people based on nothing but their nationality unless they were getting paid for it.
Aside from the fact that it’s pretty insane to suggest to kick someone off a project for no reason other than their nationality (the article doesn’t say any of these maintainers supported the invasion or had any ties with the government), even if these people actively supported the government, as far as kernel development is concerned… I don’t really care? If their contributions are good then I want their patches to be merged. Tor was made by the US government, which I in no way condone, but I still use Tor.
It says GNU/Linux but also says “and others” which could mean anything. eg doesnt specify if something like Alpine would be affected—is that “and others”?
In any case, I’ll wait 2 weeks and find out.
OP is installing the OSes on separate disks. The common disk is for user data, not for the OS.
Snake case. I find it the easiest to read.
Thunderbird shows it for a at every startup
Honestly didn’t realise till you pointed that out. I’m so used to seeing it that it doesn’t register to me what it’s saying anymore. Probably for the best that KDE only does it once a year; if it were daily I’m sure it wouldn’t even register to people that it’s asking for donations.
Do you just need to write markdown? Plenty of text editors have a vim mode. Not sure if there’s any lightweight ones that do the markdown preview alongside a vim mode; I know IntelliJ-based IDEs have a vim mode and can preview markdown, but that’s not exactly a lightweight solution, and only the community edition is open source.
But also what exactly is it you’re looking for that Vim can’t do? I use Vim for writing pretty much everything. I use Vim for markdown and it works fine. Markdown is already pretty readable as a text file so I don’t feel the need for a previewer or anything like a rich text editor (but also there are plenty of markdown editors out there if you just want to edit markdown in a RTE).
Youtube doesn’t seem to inhibit idle for me for some reason, so my screen would always turn off with swayidle while watching youtube videos. So I made my lockscreen script (which is called by swayidle)
if [ "$(playerctl status)" = "Playing" ]; then
exit 0
else
exec "/path/to/lockscreen/script"
fi
(lockscreen script was just swaylock called with a bunch of arguments)
Not super crazy compared to some of the things people are saying in the comments, but also definitely not how you’re meant to handle idle inhibition when media is playing lol
If you mean what made me uninstall Windows, it was actually just not being able to do anything I wanted to do on Windows. I was already using WSL for most basic things and tried to set Windows up to be as similar to a Linux distro as possible eg only installing things with a command line package manager and looking into trying to get it to behave like a tiling window manager.
The biggest things were not being able to use some of my preferred software, e.g. my preferred PDF reader Zathura, and just having no clue what any of the commands were whenever I had to use PowerShell or CMD. I only really knew how Unix-like systems worked and was frustrated with my lack of familiarity with Windows and how their OS works.
The only reason why I kept a Windows partition was for gaming, but at this point Proton is so good there’s really no need for a Windows partition. And I rarely play video games these days anyway.
If you mean why I started using Linux, no reason, I’ve just always used it from a young age.
oh noooooo not the copyright infringement!
Yeah I agree I don’t want bleeding edge hence why I won’t be using anything Arch-based (despite the fact that Arch-based systems are the ones I’m most familiar with, I’m typing this on an Artix system rn). But there is definitely a middle ground between bleeding edge and outdated, and I imagine a server should want to be somewhere between the middle and outdated, depending on how they balance stability and security.
I’m also not categorically opposed to using Debian. Ubuntu was my first Linux distro so I’m at least more familiar with Debian-based distros than most other popular server distros. I was just thinking probably not Debian because of how old its packages are and that I’m fairly concerned with security.
Like I said, LibreOffice Draw can edit PDFs. Try it out and see if it’s suitable for your needs
LibreOffice Draw can edit PDFs. For just a pdf reader, I use Zathura, though it may not be for you since it’s very keyboard-based so might be confusing to someone coming from Windows. I think Cinnamon must come with a default pdf reader right?
I like seeing instances where people have used “she” as the generic pronoun.
Most of my files are different across machines because of different themes etc. The only dotfiles I have synced across machines are my .zshrc
, .gitconfig
, .ideavimrc
(not my actual vimrc because it has some machine-specific theming), and .p10k.zsh
. I have them all in a folder synced with syncthing and then I symlink ~/.zshrc
to e.g. ~/dotfiles/.zshrc
.
I don’t have many so I just put them all in
~/own_repos
(as opposes to another directory I have for other people’s git repos). Maybe if/when I have more projects I’ll have a more elaborate system.