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..."
|
||||
cp alacritty/* "$CONFIG_DIR/alacritty"
|
||||
|
||||
echo "Copying picom config..."
|
||||
cp picom/* "$CONFIG_DIR/picom"
|
||||
|
||||
echo "Done"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# this is a simple config for herbstluftwm
|
||||
|
||||
. ./colors.sh
|
||||
source "$HOME/.config/herbstluftwm/colors.sh"
|
||||
|
||||
hc() {
|
||||
herbstclient "$@"
|
||||
|
@ -10,6 +10,9 @@ hc() {
|
|||
|
||||
hc emit_hook reload
|
||||
|
||||
# set background
|
||||
/home/alex/.fehbg
|
||||
|
||||
# remove all existing keybindings
|
||||
hc keyunbind --all
|
||||
|
||||
|
@ -184,3 +187,7 @@ for monitor in $(hc list_monitors | cut -d: -f1) ; do
|
|||
# start it on each monitor
|
||||
"$panel" "$monitor" &
|
||||
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