Load ~/.Xresources on Fedora
This commit is contained in:
parent
4f49699342
commit
d94ba3034e
2 changed files with 13 additions and 0 deletions
8
roles/home-gui/files/xrdb.desktop
Executable file
8
roles/home-gui/files/xrdb.desktop
Executable 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
|
|
@ -26,3 +26,8 @@
|
||||||
dest: "{{ ansible_env.HOME }}/.xinitrc"
|
dest: "{{ ansible_env.HOME }}/.xinitrc"
|
||||||
state: link
|
state: link
|
||||||
when: ansible_system == "NetBSD"
|
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"
|
||||||
|
|
Loading…
Reference in a new issue