Add picom to FreeBSD
This commit is contained in:
parent
862d7ecdb6
commit
7761040524
4 changed files with 22 additions and 0 deletions
|
@ -29,6 +29,7 @@
|
||||||
- en_GB-libreoffice
|
- en_GB-libreoffice
|
||||||
- firefox
|
- firefox
|
||||||
- git-gui
|
- git-gui
|
||||||
|
- hsetroot
|
||||||
- icewm
|
- icewm
|
||||||
- keepassxc
|
- keepassxc
|
||||||
- liberation-fonts-ttf
|
- liberation-fonts-ttf
|
||||||
|
@ -37,6 +38,7 @@
|
||||||
- noto-basic
|
- noto-basic
|
||||||
- noto-emoji
|
- noto-emoji
|
||||||
- noto-extra
|
- noto-extra
|
||||||
|
- picom
|
||||||
- rxvt-unicode
|
- rxvt-unicode
|
||||||
- tigervnc-viewer
|
- tigervnc-viewer
|
||||||
- xinput
|
- xinput
|
||||||
|
|
8
roles/home-gui/files/picom.conf
Normal file
8
roles/home-gui/files/picom.conf
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
fading = false;
|
||||||
|
inactive-opacity = 1.0;
|
||||||
|
shadow = true;
|
||||||
|
no-dock-shadow = true;
|
||||||
|
no-dnd-shadow = true;
|
||||||
|
shadow-exclude = [
|
||||||
|
"class_g = 'TaskBar'"
|
||||||
|
];
|
|
@ -3,4 +3,12 @@
|
||||||
xset b off # Disable the audible bell.
|
xset b off # Disable the audible bell.
|
||||||
xrandr --dpi 96 # Set the fonts to the normal DPI.
|
xrandr --dpi 96 # Set the fonts to the normal DPI.
|
||||||
xrdb -load "$HOME/.Xresources"
|
xrdb -load "$HOME/.Xresources"
|
||||||
|
if [ -x /usr/local/bin/piconf ]
|
||||||
|
then
|
||||||
|
/usr/local/bin/piconf -b
|
||||||
|
fi
|
||||||
|
if [ -x /usr/local/bin/hsetroot ]
|
||||||
|
then
|
||||||
|
/usr/local/bin/hsetroot -solid steelblue
|
||||||
|
fi
|
||||||
exec icewm-session
|
exec icewm-session
|
||||||
|
|
|
@ -57,3 +57,7 @@
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "icewm/"
|
src: "icewm/"
|
||||||
dest: "{{ ansible_env.HOME }}/.icewm"
|
dest: "{{ ansible_env.HOME }}/.icewm"
|
||||||
|
- name: Create $XDG_CONFIG_HOME/piconf.conf
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: "piconf.conf"
|
||||||
|
dest: "{{ ansible_env.XDG_CONFIG_HOME }}/piconf.conf"
|
||||||
|
|
Loading…
Reference in a new issue