add picom
This commit is contained in:
parent
51a0052864
commit
ae2dac120f
3
apply.sh
3
apply.sh
|
@ -11,4 +11,7 @@ fi
|
||||||
echo "Copying alacritty config..."
|
echo "Copying alacritty config..."
|
||||||
cp alacritty/* "$CONFIG_DIR/alacritty"
|
cp alacritty/* "$CONFIG_DIR/alacritty"
|
||||||
|
|
||||||
|
echo "Copying picom config..."
|
||||||
|
cp picom/* "$CONFIG_DIR/picom"
|
||||||
|
|
||||||
echo "Done"
|
echo "Done"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# this is a simple config for herbstluftwm
|
# this is a simple config for herbstluftwm
|
||||||
|
|
||||||
. ./colors.sh
|
source "$HOME/.config/herbstluftwm/colors.sh"
|
||||||
|
|
||||||
hc() {
|
hc() {
|
||||||
herbstclient "$@"
|
herbstclient "$@"
|
||||||
|
@ -10,6 +10,9 @@ hc() {
|
||||||
|
|
||||||
hc emit_hook reload
|
hc emit_hook reload
|
||||||
|
|
||||||
|
# set background
|
||||||
|
/home/alex/.fehbg
|
||||||
|
|
||||||
# remove all existing keybindings
|
# remove all existing keybindings
|
||||||
hc keyunbind --all
|
hc keyunbind --all
|
||||||
|
|
||||||
|
@ -184,3 +187,7 @@ for monitor in $(hc list_monitors | cut -d: -f1) ; do
|
||||||
# start it on each monitor
|
# start it on each monitor
|
||||||
"$panel" "$monitor" &
|
"$panel" "$monitor" &
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# Start picom
|
||||||
|
picom --experimental-backends --backend glx &
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
blur:
|
||||||
|
{
|
||||||
|
method = "gaussian";
|
||||||
|
size = 35
|
||||||
|
deviation = 15.0;
|
||||||
|
};
|
Loading…
Reference in New Issue