g_damian

joined 1 year ago
[–] [email protected] 10 points 4 months ago

You can mount remote with rclone and fine tune caching to your liking: https://rclone.org/commands/rclone_mount/#vfs-file-caching

[–] [email protected] 2 points 9 months ago (1 children)

Rclone works with mega (25gb free), storj (25gb free), google (15gb free).

[–] [email protected] 1 points 10 months ago

Scaleway also offers glacier storage class. ~€0.002/GB/month. €0.009/GB retrieval. €0.01/GB transfer.

[–] [email protected] 4 points 11 months ago

It depends on how much cpu power, disk space, ram, side databases, backup space, etc. you need. Once you know all of it, just compare prices. Check also hetzner, scaleway, vultr, digital ocean, ovh. Good luck 🤞

[–] [email protected] 4 points 11 months ago

There's also RCX. But it doesn't support all possible remotes through gui, however all remote types can be added by importing rclone conf file.

[–] [email protected] 9 points 11 months ago

You can put the setting in user.js file. For example, check arkenfox.

[–] [email protected] 4 points 11 months ago

I use rathole tunnel (similar to frp) on VPS and Caddy locally. VPS and my local machine are connected with wireguard VPN. DNS points to VPS, TLS certificates are managed locally by Caddy.

[–] [email protected] 5 points 11 months ago

I use mine as kitchen radio with https://moodeaudio.org/

 

For example, I set firefox to some custom sink using pavucontrol, but now I want to reset it to default. How can I do this without using pavucontrol, just cli?

EDIT:

Found it :) they are in ~/.local/state/wireplumber/restore-stream. To remove target sink, pipewire and wireplumber have to be restarted:

systemctl --user stop pipewire
sed -i '/:target/d' ~/.local/state/wireplumber/restore-stream
systemctl --user start wireplumber

Other solution is just to reroute all active streams to the default sink:

sink="$(pactl get-default-sink)"
pactl list short sink-inputs | sed -r 's/([0-9]+).*/\1/' | while read appId; do 
    pactl move-sink-input $appId "$sink"
done
[–] [email protected] 10 points 1 year ago

I'm a fan of managing dotfiles with plain git. I think it could be orchestrated a bit to make it more declarative.

 

Has anyone ever tried to run sharrr in a container?

[–] [email protected] 7 points 1 year ago* (last edited 1 year ago)
[–] [email protected] 2 points 1 year ago

that worked! thanks

view more: next ›