- Joined
- Mar 29, 2014
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
No yay or pikaur, but it looks like they've pulled pamac over from Manjaro.is there any 3rd party GUI update system that's recommended for Artix? and yay or Pikaur?
it's been working surprisingly well. at least to the point where any problems i experienced might just because i'm running an unfamiliar distro.last I knew. they did have a cli aur helper for artix. Its been a little while since I've run it though. I think the normal ones work as well, but they won't check to make sure a package won't break because systemd isn't there. or something along those lines. I can't remember what the artix specific aur helper I used before was. I could have sworn there was one though.
And yeah. what the other person said about xlibre I would agree with. It's not going to be stable right now. If you want stable at the moment. You can just use arch with xorg. Running xlibre at the moment even if it's being checked by the artix people I imagine at some point you are going to run into some issue over the next few months.
That said. It does seem to be working well now. I would just expect things to be a bit rocky at some point. in the future.
oh yeah. I kept forgetting. I was going to post some of mine. Just a few, I use. I have a good bit more.Dox.bashrc
aliases
Bash:function emacs() { { command emacs --init-directory="$HOME/.emacs.d/" "$@" > /dev/null 2>&1 & } 2>/dev/null disown } alias emacsclient='emacsclient -c -a ""' alias emacst='command emacs -nw --init-directory=$HOME/.emacs.d' alias glst="eza --git --git-ignore --group-directories-first -T -L 3" alias gcom='git commit -m ' alias gadd='git add ' alias glog='git log --oneline --graph --decorate' alias resource='source ~/.bashrc && echo ".bashrc reloaded"' alias clock='tty-clock -c -C 2 -b -s'
alias rebuild='make clean && make && sudo make install'
alias update-grub='grub-mkconfig -o /boot/grub/grub.cfg'
alias quik-dl='yt-dlp -f "best[ext=mp4]"'
alias svim='sudo nvim'
alias wget='wget --hsts-file=~/.local/share/wget-hsts'
alias reboot='loginctl reboot'
alias ll='ls -lahF --color=auto'
Technically it's in kdeconnect rather than .bashrc, but I do haveDox.bashrc
aliases
loginctl lock-session && xset dpms force off
filed under "splat".I just keep an old install of Audacity 2.4.2 and use that. Probably the only piece of software I don't constantly updoot.What the hell is going on with Audacity? After nearly 2 decades of use I finally gave up and switched over to the Tenacity fork because Audacity is turning into a bloated mess. Tenacity feels like the old Audacity, it's quick w/ no bullshit. Audacity was a simple "does a thing well" type of software, but of course we can't have that with the usual suspects coming in to shit on every open source project in existence. The only reason I have some hope for a rebound of Audacity is because it's cross-platform that is used widely by Mac and Windows users, and I am just more optimistic that they won't tolerate this shit like Linux users usually do. They also fucked up the forum too, it used to be a simple board and now it's one of those ugly quasi-reddit boards that's a nightmare to navigate. In just a few years they fucked the entire project up.
Isn't that one Breadtuber involved w/ Audacity now? The Music Software guy? Apparently he "manages it". Unsurprising if so. Call me retarded for not switching over the moment they added telemetry, I guess.
Is this like an OpenOffice.Org situation where the company control makes it shittier or an Emby situation where the fork just can't keep up with a team who can make maintaining the code their daytime job?If memory serves, the dev(s) behind audacity were hired by some music outfit a couple of years ago, so whilst it's still technically open source, it's now open source but with expectations of dividends.
Cue the forks.
I can't get mad about this per se, because devs need to eat too, but that's why there's been some non-optimal choices made of late.
Hey ho.
*Enshitification Intensifies*
Tenacity has the contributor's covenant CoC so it's hardly much better than audacity, I think it's still pozzed. Sneedacity is based (its CoC is a parody) but has stalled at the state it was in 3 years ago with no development happening after that.What the hell is going on with Audacity? After nearly 2 decades of use I finally gave up and switched over to the Tenacity fork because Audacity is turning into a bloated mess. Tenacity feels like the old Audacity, it's quick w/ no bullshit. Audacity was a simple "does a thing well" type of software, but of course we can't have that with the usual suspects coming in to shit on every open source project in existence. The only reason I have some hope for a rebound of Audacity is because it's cross-platform that is used widely by Mac and Windows users, and I am just more optimistic that they won't tolerate this shit like Linux users usually do. They also fucked up the forum too, it used to be a simple board and now it's one of those ugly quasi-reddit boards that's a nightmare to navigate. In just a few years they fucked the entire project up.
Isn't that one Breadtuber involved w/ Audacity now? The Music Software guy? Apparently he "manages it". Unsurprising if so. Call me retarded for not switching over the moment they added telemetry, I guess.
The way Tantacrul and his collaborators raped the development of Audacity is extremely upsetting, especially so because they clearly do not actually want Audacity. The entire point of Audacity, at least in my view, is that it's a simple, sample-based audio editing application. No complicated VSTs and real-time effects, you just operate directly on the audio samples, and everything is effectively destructive (up to usage of the undo button). This has its limitations, particularly if you don't want to engage with the plugin thing it has, but it works and is very good at what it does.What the hell is going on with Audacity? After nearly 2 decades of use I finally gave up and switched over to the Tenacity fork because Audacity is turning into a bloated mess. Tenacity feels like the old Audacity, it's quick w/ no bullshit. Audacity was a simple "does a thing well" type of software, but of course we can't have that with the usual suspects coming in to shit on every open source project in existence. The only reason I have some hope for a rebound of Audacity is because it's cross-platform that is used widely by Mac and Windows users, and I am just more optimistic that they won't tolerate this shit like Linux users usually do. They also fucked up the forum too, it used to be a simple board and now it's one of those ugly quasi-reddit boards that's a nightmare to navigate. In just a few years they fucked the entire project up.
Isn't that one Breadtuber involved w/ Audacity now? The Music Software guy? Apparently he "manages it". Unsurprising if so. Call me retarded for not switching over the moment they added telemetry, I guess.
I should probably do another purge again sometime soon, but here are some of my most used(/useful):Dox .bashrc aliases
# Length of string
le() { echo -n "${*}" | wc -c; }
# quick calculations
calc() { python3 -c "from math import *; print(${*})"; }
alias calci='python3 -qic "from math import *;"'
# Quick number base conversions
bin2dec() { python3 -c "print(0b${*})"; }
bin2hex() { python3 -c "print(hex(0b${*})[2:])"; }
dec2bin() { python3 -c "print(bin(${*})[2:])"; }
dec2hex() { python3 -c "print(hex(${*})[2:])"; }
hex2bin() { python3 -c "print(bin(0x${*})[2:])"; }
hex2dec() { python3 -c "print(0x${*})"; }
# one-letter aliases for super frequent commands
alias e='exit'
alias c='clear'
alias a='ip -brief address show'
# vim aliases
alias vi='nvim'
alias vim='nvim'
# Power command shortcuts
alias reboot='sudo reboot'
alias shutdown='sudo shutdown -h now'
# Ignore robots.txt when mirroring websites
alias wget='wget -e robots=off'
# pacman
alias pc='pacman'
alias autoremove='sudo pacman -Rns $(pacman -Qtdq)' # remove unused deps
alias autopurge='paccache -ruk0' # purge cache
# lsblk with some defaults
alias blk='lsblk -o NAME,FSTYPE,FSVER,SIZE,FSUSE%,TYPE,LABEL,MOUNTPOINTS'
# Feh with some defaults
alias feh='feh -g 540x540+960-540 -S filename --scale-down --zoom max'
# exit if text fits within one screen
alias less='less -F'
# blank/unblank TTY
alias b='setterm -blank=force'
alias p='setterm -blank=poke'
# Sort newline-delimited list from stdin
alias sort-list='sort | uniq -c | sort -nr | cut -b 9-'
alias sort-list-count='sort | uniq -c | sort -nr' # show count
# uppercase/lowercase quick text transformation
alias l2u='tr "[:lower:]" "[:upper:]"'
alias u2l='tr "[:upper:]" "[:lower:]"'
# Type out clipboard content
alias at='sleep 3; xdotool type "$(xclip -o -rmlastnl -sel clip)"'
# copy text/image to X11 clipboard
alias cs='xclip -selection clipboard'
alias csi='xclip -sel clip -t image/png' # images
# yt-dlp shortcuts
alias yt-video='yt-dlp -f bestvideo+bestaudio --embed-chapters --embed-metadata --embed-subs --sub-langs all'
alias yt-video-thumb='yt-video --embed-thumbnail'
alias yt-music='yt-dlp --no-video -x -f bestaudio --embed-chapters --embed-metadata --embed-thumbnail --convert-thumb png'
alias yt-music-thumb='yt-music --ppa "ThumbnailsConvertor+ffmpeg_o:-c:v png -vf crop=\"'\''if(gt(ih,iw),iw,ih)'\'':'\''if(gt(iw,ih),ih,iw)'\''\""'
# shortcut to restart Plasma because FDOfags can't write competent software
alias plasma='killall -9 plasmashell; plasmashell --replace &'
Why not use `sudo -e <file>` (and set `editor=/usr/bin/nvim` in /etc/sudoers) instead? No need to run the entirety of neovim, and all your plugins, as root.Bash:alias svim='sudo nvim'
Many open source projects adopt the covenant CoC because they simply don't know any better, because other projects adopt it, and because to them it looks harmless. Certainly it's not as bad as for example the geek feminism CoC. That is to say, I wouldn't reject a project as pozzed only because of this CoC, even though it's a poor choice.Tenacity has the contributor's covenant CoC so it's hardly much better than audacity, I think it's still pozzed.
For the same reason troons skinwalk as every other project and franchise they've defiled over the years: Name recognition.why did Audacity need to be sodomized like this instead of making something new?
I can't remember if sudo -e acts exactly like sudoedit. I believe it does which is why I don't use it.No need to run the entirety of neovim, and all your plugins, as root.
You also keep clipboard integration that way, if you have it enabled.
It begs the question: why did Audacity need to be sodomized like this instead of making something new?
The big one to watch will be what Debian thinks.Courtesy of Lunduke, here's a tracker for where distros stand on Xlibre:
Are we Xlibre yet?
Given that Debian powers a chunk of enterprise stuff, I think things like Xnamespace will make it too important to ignore.The big one to watch will be what Debian thinks.
I think they will put it in eventually (and especially if its better then Xorg in technical merit), but they generally aren't in a rush to get stuff done.
XLibre is still in its very early days, give it a few months and see what happens.