Compare commits

...

2 Commits

Author SHA1 Message Date
cd49f0e88d Fix install 2022-09-03 15:21:19 +02:00
72bad1b01b Switch to picom 2022-09-03 15:16:50 +02:00
3 changed files with 23 additions and 3 deletions

20
.config/picom.conf Normal file
View File

@ -0,0 +1,20 @@
# basic configuration
backend = "glx";
vsync = true;
glx-no-stencil = true;
panting-on-overlay = true;
opengl-swc = true;
# Fading
fading = true;
fade-in-step=0.05;
fade-out-step=0.05;
# Corners
corner-radius = 15;
rounded-corners-exclude = [
"class_g = 'dwm'",
"class_g = 'Dunst'"
]

View File

@ -5,7 +5,7 @@ if [[ "$DESKTOP_SESSION" = "dwm" ]]; then
export AWT_TOOLKIT=MToolkit
wmname LG3D
compton &
picom -b
redshift &
dwmstatus &
dunst &

View File

@ -3,5 +3,5 @@ FILES = .bash_aliases .bashrc .inputrc .profile .vimrc .xsessionrc
install:
cp -v $(FILES) $(HOME)
cp -rv bin $(HOME)/bin
cp -rv .local $(HOME)/.local
cp -rv .config $(HOME)/.config
cp -rv .local $(HOME)
cp -rv .config $(HOME)