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
|
||||
- firefox
|
||||
- git-gui
|
||||
- hsetroot
|
||||
- icewm
|
||||
- keepassxc
|
||||
- liberation-fonts-ttf
|
||||
|
@ -37,6 +38,7 @@
|
|||
- noto-basic
|
||||
- noto-emoji
|
||||
- noto-extra
|
||||
- picom
|
||||
- rxvt-unicode
|
||||
- tigervnc-viewer
|
||||
- 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.
|
||||
xrandr --dpi 96 # Set the fonts to the normal DPI.
|
||||
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
|
||||
|
|
|
@ -57,3 +57,7 @@
|
|||
ansible.builtin.copy:
|
||||
src: "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