1
0

Added picom, mpv, bashrc

This commit is contained in:
2026-01-18 16:24:29 +02:00
parent c8b10d337a
commit 157ef66dbe
3 changed files with 36 additions and 0 deletions

12
bash/bashrc Normal file
View File

@@ -0,0 +1,12 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias ll='ls --color=auto -lah'
alias aria2c='aria2c -x 16 -s 16 -k 1M'
PS1='(\u@\h) (\w) ~> '

3
mpv/mpv.conf Normal file
View File

@@ -0,0 +1,3 @@
hwdec=auto
profile=fast
af=lavfi=[dynaudnorm=f=150:r=0.9:c=1]

21
picom/picom.conf Normal file
View File

@@ -0,0 +1,21 @@
# Backend: glx is usually best for reliable vsync/tear-free on most hardware (Intel/AMD/NVIDIA)
backend = "glx";
# VSync: This is the key line for fixing tearing
vsync = true;
# Disable all effects you don't need
shadow = false;
fading = false;
blur: { method = "none"; };
opacity-rule = [];
corner-radius = 0;
# No animations/transitions
transition-length = 0;
transition-pow-x = 0;
transition-pow-y = 0;
transition-pow-w = 0;
transition-pow-h = 0;
size-transition = false;