Compare commits
2 commits
b45f8b80ed
...
cd49f0e88d
Author | SHA1 | Date | |
---|---|---|---|
cd49f0e88d | |||
72bad1b01b |
3 changed files with 23 additions and 3 deletions
20
.config/picom.conf
Normal file
20
.config/picom.conf
Normal 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'"
|
||||||
|
]
|
||||||
|
|
|
@ -5,7 +5,7 @@ if [[ "$DESKTOP_SESSION" = "dwm" ]]; then
|
||||||
export AWT_TOOLKIT=MToolkit
|
export AWT_TOOLKIT=MToolkit
|
||||||
wmname LG3D
|
wmname LG3D
|
||||||
|
|
||||||
compton &
|
picom -b
|
||||||
redshift &
|
redshift &
|
||||||
dwmstatus &
|
dwmstatus &
|
||||||
dunst &
|
dunst &
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -3,5 +3,5 @@ FILES = .bash_aliases .bashrc .inputrc .profile .vimrc .xsessionrc
|
||||||
install:
|
install:
|
||||||
cp -v $(FILES) $(HOME)
|
cp -v $(FILES) $(HOME)
|
||||||
cp -rv bin $(HOME)/bin
|
cp -rv bin $(HOME)/bin
|
||||||
cp -rv .local $(HOME)/.local
|
cp -rv .local $(HOME)
|
||||||
cp -rv .config $(HOME)/.config
|
cp -rv .config $(HOME)
|
Loading…
Reference in a new issue