linux
Linux 1mo ago
Jump
Should I look for an alternative to firefox in Fedora?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    1mo ago 100%

    I've been using Librewolf for quite some time now and am genuinely very happy with it. All the big distros package it, so it's not hard to install. You can scale up/down how private you want your experience and then see how that breaks sites if that's a concern for you.

    4
  • linux
    Linux 1mo ago
    Jump
    Looking to get away from Sublime; Sell me on your favorite non-modal text editor!
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    1mo ago 50%

    usually, yes. It can be used almost amodally, especially if you use the GUI interface, but there are some pretty important features that just can't be used without switching modes

    0
  • linux
    Linux 1mo ago
    Jump
    Looking to get away from Sublime; Sell me on your favorite non-modal text editor!
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    1mo ago 50%

    Helix looks interesting, but it won't work for me for some of the same reasons that Vim doesn't. Again, my calcified brain's problems and not a problem with those interfaces.

    My limited understanding is that Helix's dev(s?) actually did work on Vim's codebase and want to put what they learned there to good use.

    0
  • I purchased a license for Sublime a few years ago, when I seriously thought that the way forward for me was to continue working in IT. That didn't play out, so I'm now free to expunge one more piece of proprietary software from my life. I've spent literally years at a time with modal text editors as a job requirement, and I know that I just don't work well with them. This is not to say that Vim and Emacs are anything less than excellent. This is a me problem and not a them problem. The editors I've found that have worked best for me in the past are probably Textmate and Sublime. Notepad++ runs a close third, and there is a Linux port these days! The one thing I will not do is Electron-based editors. Besides the enormous resource usage of having a browser instance fired up for them, I've had malware try to coopt the JS backends of Electron text editors in the past. (On an interesting short-term contract gig cleaning malware out of websites.) It's left me pretty gunshy, and I don't need extra stress. I've been down the lists of editors at certain wikis, and experimented with several of them. Kate seems like the best GUI editor and Micro seems like the best terminal-based editor. However, I've been living in a relative vacuum on this subject for more than a decade and would appreciate others' opinions.

    39
    28
    linux
    Linux 8mo ago
    Jump
    Do you use aliases?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    8mo ago 75%

    Some of these demand that the terminal you use them with is kitty:

    alias ipc='curl icanhazip.com'
    # btop is *pretty* bloat!
    alias htop='btop'
    # I'm kinda proud of this oneliner. It's pointless, but it was fun. It displays a random square image when you run
    # neofetch rather than the default ansi art
    alias neofetch='filarr=(~/Media/Images/1x1/*.*) && fil=${filarr[$RANDOM % ${#filarr[@]}]} && neofetch --kitty $fil' 
    # comics are an important part of my life
    alias gd='cd ~ ; gallery-dl'
    alias gde="cd ~ ; gallery-dl --chapter-filter 'lang == (\"en\")'"
    alias yd='yt-dlp --sub-langs all --embed-subs --embed-chapters --progress --paths home:~/Downloads'
    alias subl="/opt/sublime_text/sublime_text"
    #exa is currently unmaintained. eza is a maintained fork. It installs a link to exa, but...
    alias ls="eza --icons --hyperlink --group-directories-first --git"
    alias lsblkv="lsblk -o \"NAME,KNAME,SIZE,TYPE,VENDOR,MODEL,MOUNTPOINT\""
    alias icat="kitty +kitten icat"
    alias mem="grep -e Dirty: /proc/meminfo; grep -e Writeback: /proc/meminfo"
    alias flush="sync"
    alias links="links https://www.duckduckgo.com"
    alias q="qalc"
    alias hf="history 1 | fzf"
    # tile the first two kitty windows and resize all kitty windows to 915x945, redirecting any errors to /dev/null
    alias tk="xdotool search --class kitty windowmove %1 30 105 windowmove %2 975 105 windowsize %@ 915 945 2>/dev/null"
    # only ask for password once on long updates
    alias yay="yay --sudoloop"
    
    2
  • linux
    Linux 9mo ago
    Jump
    tell me your experience using zfs/btrfs
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    The only issues I've had are a) learning curve using BTRFS and its associated utilities and b) difficulty differentiating snapshots. I learned REAL DAMN QUICK to give those guys descriptive comments like 'snapshot before 2023-12-16 update'.

    2
  • linux
    Linux 9mo ago
    Jump
    tell me your experience using zfs/btrfs
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    system config and system data are in my root subvolume, home directory, dotfiles, and some data that I want to be accessed at SSD speed are in my home subvolume. This all gets timeshift backup/snapshots. The rest of my data is located on spinning platter sata drives, which is backed up regularly using a different method (weekly rsync job that copies to a cold backup drive.)

    2
  • linux
    Linux 9mo ago
    Jump
    tell me your experience using zfs/btrfs
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    I've been using luks on btrfs for a couple years now with little issue. I'm not using the RAID features of BTRFS though. I'm using it for subvolumes and snapshots.

    I personally like Timeshift as my snapshot utility simply because I kinda grok both its GUI and CLI interfaces. It's saved my bacon a few times over. I like rolling release-type distros, so it handles the occasional bad update gracefully. I've heard folks say good things about Snapper, though.

    5
  • linux
    Linux 9mo ago
    Jump
    Canonical's Steam Snap is Causing Headaches for Valve
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 94%

    This smacks of 'Canonical realizes it has to shoehorn in all popular apps to make Snap capable of competing with Flatpak'. Steam is, for better or worse, one of the most popular applications in the world right now.

    Right now, Canonical is doing the same thing Sony does whenever they try to float a new media format: Beg, Borrow, Steal, Blackmail, Bribe, and Bully anyone they can into using it to try to maintain some control over the future of that media. Also, right now, they're in the same place that Sony WAS in when VHS hit the market. Betamax/Snap was/is failing not just for technical reasons, but because it's bad for everyone around for one bully to control an entire market.

    17
  • Oklahoma bill would require 'furries' be picked up from school by parents, animal control
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    I have a friend who makes mascot costumes. She and her husband sometimes wear them out for entertainment. Little kids absolutely ADORE seeing human-sized Pokemon walking around the mall, bowling alley, or the like.

    11
  • linux
    Linux 10mo ago
    Jump
    Spark notes for Windows -> Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    I'd add my ballot in to recommend Mint or Pop! for someone who wants to game. Newer WINE and Proton versions have made gaming so very nice on Linux. Cinnamon, Mate, and XFCE environments are what I'd recommend for your graphical shell. Cinnamon is kinda Mint's flagship DE. I'd recommend it for anyone new to Linux or even new to computers in general.

    I spent many, many years administering Suse and RHEL systems for work. I found that while I was more comfortable with configuring Red Hat/Fedora-style systems from a terminal/shell-only POV, Mint+Cinnamon were what made Desktop Linux work for me when I realized I absolutely was not going from Win 7 to Win 10. I feel like it's only gotten better since.

    I currently use Endeavour + Cinnamon, but Endeavour is Arch-based, and more for tinkering with than 'Install and it just werks' the way Mint or Pop! are.

    1
  • linux
    Linux 10mo ago
    Jump
    How do you get themes? Are [desktop]-look.org sites trustworthy?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearGM
    gmhh
    9mo ago 100%

    kde-look, etc... and 'pling.com' haven't caused any issues so far, SFAIK. That said, it's apparently all user upload. There's (probably tiny, but not zero) room for shenanigans in that regard.

    I don't use their app. Instead, I download the things I like and manually vet them to make sure nothing untowards is going on. There never has been, so I'm probably a bit paranoid.

    A LOT of the time, that theme, icon set, cursor, or whatever else you like will ALREADY be in your distro's repos. It's usually quick and easy to check, and then do the manual download and visually inspect if it's not available. Installing just means sticking the unzipped folder in your .themes or .icon folders, appropriately.

    Protip: A lot of themes, fonts, icon sets, and the like are starting to offer customizable downloads. For example, if you like Bibata cursor, you can go to their website and do all customized colors to match your favorite theme: https://www.bibata.live/studio

    Iosevka font is another one that does this. You can pick and choose glyph features for a custom version: https://typeof.net/Iosevka/customizer#gh-light-mode-only

    (These are things you could do with the source code, but the online customizers make it easier for newer folks.)

    2