| #!/usr/bin/env bash | |
| echo -e "\033[0;32mПароль в keepass под именем restic\033[0m" | |
| # Each element is the exclusion path | |
| excludes=( | |
| "$HOME/.local" # Local configuration and application files | |
| "$HOME/.cache" # Temporary cache files | |
| "$HOME/Downloads" # Downloads folder |
| #!/usr/bin/env bash | |
| USERS_DIR="/home" | |
| SERVICES_DIR="/etc/sv" | |
| RUNIT_DIR="/var/service" | |
| create_tmux_service() { | |
| user="$1" | |
| service_name="tmux-${user}" | |
| service_dir="${SERVICES_DIR}/${service_name}" |
| #!/usr/bin/env python3 | |
| import plotext as plt | |
| from subprocess import check_output | |
| import psutil | |
| import time | |
| import math | |
| CMD = "sensors amdgpu-pci-0500 | grep PPT | grep -oP '(?<=cap =) *(.?\d+)'" | |
| TARGET_TEMP_MAX = 91 | |
| TARGET_TEMP_MIN = 87 |
| #!/usr/bin/env python3 | |
| import plotext as plt | |
| from subprocess import check_output | |
| import psutil | |
| import time | |
| CMD = "sensors amdgpu-pci-0500 | grep PPT | grep -oP '(?<=cap =) *(.?\d+)'" | |
| TARGET_TEMP = 83 | |
| CRITICAL_TEMP = 92 | |
| CAP_MIN = 2 |
| # This example uses M2M-100 models converted to the CTranslate2 format. | |
| # Download CTranslate2 models: | |
| # • M2M-100 418M-parameter model: https://bit.ly/33fM1AO | |
| # • M2M-100 1.2B-parameter model: https://bit.ly/3GYiaed | |
| import ctranslate2 | |
| import sentencepiece as spm |
tl;dr: Wayland is not "the future", it is merely an incompatible alternative to the established standard with a different set of priorities and goals.
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating e
| #!/bin/bash | |
| expireTime="3200" | |
| mpddir="$HOME/Music/" | |
| defaultimage="$HOME/music.png" | |
| update_cover() { | |
| path=$mpddir$(mpc -f %file% current) | |
| album=$(mpc -f %file% current) | |
| ffmpeg -loglevel quiet -y -i "$path" /tmp/cover |
| #!/bin/sh | |
| mpc -f "[[%artist% - ][%album% - ]%title%]|[%file%]" playlist | \ | |
| cat -n | sed "s/\t/: /" | \ | |
| cut -c 1-120 | dmenu -i | cut -d ':' -f 1 \ | |
| | xargs -r mpc play > /dev/null |
