Fix rofi config
All checks were successful
dotfiles/pipeline/head This commit looks good

This commit is contained in:
Johannes Rothe 2021-08-31 22:07:38 +02:00
parent a86432f7be
commit d7a67aa4a1
2 changed files with 8 additions and 5 deletions

View File

@ -1 +1,4 @@
rofi.theme: /usr/share/rofi/themes/Arc-Dark.rasi configuration {
theme: "/usr/share/rofi/themes/Arc-Dark.rasi";
font: "Roboto Mono 10";
}

View File

@ -38,14 +38,14 @@
file: file:
path: '{{ home }}/tmp/dotfiles_backup' path: '{{ home }}/tmp/dotfiles_backup'
state: directory state: directory
mode: 0700 mode: 0755
- name: Backup stuff - name: Backup stuff
copy: copy:
src: '{{ item }}' src: '{{ item }}'
dest: '{{ home }}/tmp/dotfiles_backup' dest: '{{ home }}/tmp/dotfiles_backup'
remote_src: True # copy the folder from the host instead of ansible remote_src: True # copy the folder from the host instead of ansible
mode: 0600 mode: 0755
ignore_errors: yes ignore_errors: yes
loop: loop:
# dirs (without trailing '/' copies the whole dir) # dirs (without trailing '/' copies the whole dir)
@ -64,7 +64,7 @@
file: file:
path: '{{ item }}' path: '{{ item }}'
state: directory state: directory
mode: 0700 mode: 0755
loop: loop:
- '{{ home }}/.config/i3/' - '{{ home }}/.config/i3/'
- '{{ home }}/.config/i3status/' - '{{ home }}/.config/i3status/'
@ -87,7 +87,7 @@
- src: '{{ files_dir }}/i3status_config' - src: '{{ files_dir }}/i3status_config'
dest: '{{ home }}/.config/i3status/config' dest: '{{ home }}/.config/i3status/config'
- src: '{{ files_dir }}/rofi_config' - src: '{{ files_dir }}/rofi_config'
dest: '{{ home }}/.config/rofi/config' dest: '{{ home }}/.config/rofi/config.rasi'
- src: '{{ files_dir }}/tmux.conf' - src: '{{ files_dir }}/tmux.conf'
dest: '{{ home }}/.tmux.conf' dest: '{{ home }}/.tmux.conf'
- src: '{{ files_dir }}/ssh_config' - src: '{{ files_dir }}/ssh_config'