Added picom, mpv, bashrc
This commit is contained in:
12
bash/bashrc
Normal file
12
bash/bashrc
Normal 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
3
mpv/mpv.conf
Normal 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
21
picom/picom.conf
Normal 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;
|
||||
|
||||
Reference in New Issue
Block a user