Load ~/.Xresources on Fedora

This commit is contained in:
Anthony Rose 2020-04-12 22:25:16 +01:00
parent 4f49699342
commit d94ba3034e
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,8 @@
#!/usr/bin/env xdg-open
[Desktop Entry]
Terminal=false
Name=Xresources
Exec=xrdb -merge .Xresources
Icon=xterm-color
Type=Application

View file

@ -26,3 +26,8 @@
dest: "{{ ansible_env.HOME }}/.xinitrc"
state: link
when: ansible_system == "NetBSD"
- name: Load ~/.Xresources on Fedora
copy:
src: "xrdb.desktop"
dest: "{{ ansible_env.HOME }}/.config/autostart/xrdb.desktop"
when: ansible_distribution == "Fedora"