this post was submitted on 24 Oct 2024
47 points (96.1% liked)

Linux

47866 readers
2318 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 
# here is where my aliases go yo

alias alias-edit="vim ~/.local/config/alias_config && source ~/.local/config/alias_config && echo 'Alias updated. \n'"


## Modern cli
alias ls="exa"
alias find="fdfind"

## System 76
alias battery-full="system76-power charge-thresholds --profile full_charge"
alias battery-balanced="system76-power charge-thresholds --profile balanced"
alias battery-maxhealth="system76-power charge-thresholds --profile max_lifespan"

## Maintenance
alias update-flatapt="sudo apt update && sudo apt upgrade -y && flatpak update --assumeyes"

## Misc
alias tree="exa --tree"

## Incus
alias devi-do="sudo incus exec dev0 -- su -l devi"

## Some programs
alias code="flatpak run com.visualstudio.code"
~                                                
you are viewing a single comment's thread
view the rest of the comments
[–] narc0tic_bird@lemm.ee 5 points 1 day ago (1 children)

Why when a simple alias will do?

[–] slickJujitsu@lemmy.today 3 points 1 day ago (1 children)
[–] narc0tic_bird@lemm.ee 4 points 1 day ago

I think I have a simple function in my .zshrc file that updates flatpaks and runs dnf or zypper depending on what the system uses. This file is synced between machines as part of my dotfiles sync so I don't have to install anything separate. The interface of most package managers is stable, so I didn't have to touch the function.

This way I don't have to deal with a package that's on a different version in different software repositories (depending on distribution) or manually install and update it.

But that's just me, I tend to keep it as simple as possible for maximum portability. I also avoid having too many abstraction layers.