diff --git a/roles/dotfiles/files/rofi_config b/roles/dotfiles/files/rofi_config index 0406648..24243f0 100644 --- a/roles/dotfiles/files/rofi_config +++ b/roles/dotfiles/files/rofi_config @@ -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"; +} diff --git a/roles/dotfiles/tasks/main.yml b/roles/dotfiles/tasks/main.yml index 11e8d13..91f51a5 100644 --- a/roles/dotfiles/tasks/main.yml +++ b/roles/dotfiles/tasks/main.yml @@ -38,14 +38,14 @@ file: path: '{{ home }}/tmp/dotfiles_backup' state: directory - mode: 0700 + mode: 0755 - name: Backup stuff copy: src: '{{ item }}' dest: '{{ home }}/tmp/dotfiles_backup' remote_src: True # copy the folder from the host instead of ansible - mode: 0600 + mode: 0755 ignore_errors: yes loop: # dirs (without trailing '/' copies the whole dir) @@ -64,7 +64,7 @@ file: path: '{{ item }}' state: directory - mode: 0700 + mode: 0755 loop: - '{{ home }}/.config/i3/' - '{{ home }}/.config/i3status/' @@ -87,7 +87,7 @@ - src: '{{ files_dir }}/i3status_config' dest: '{{ home }}/.config/i3status/config' - src: '{{ files_dir }}/rofi_config' - dest: '{{ home }}/.config/rofi/config' + dest: '{{ home }}/.config/rofi/config.rasi' - src: '{{ files_dir }}/tmux.conf' dest: '{{ home }}/.tmux.conf' - src: '{{ files_dir }}/ssh_config'