mirror of
https://github.com/roles-ansible/ansible_role_sway.git
synced 2024-08-16 13:49:49 +02:00
Improving some values, adding font awesome
This commit is contained in:
parent
761d8e1268
commit
b1d454096f
4 changed files with 30 additions and 4 deletions
23
README.md
23
README.md
|
@ -33,8 +33,10 @@ For a good overview about possible variables, please have a look into ``defaults
|
||||||
```yaml
|
```yaml
|
||||||
# User List for i3wm config
|
# User List for i3wm config
|
||||||
i3wm_user_list:
|
i3wm_user_list:
|
||||||
- 'alice'
|
- user: "alice"
|
||||||
- 'bob'
|
home: "/home/alice"
|
||||||
|
- user: "bob"
|
||||||
|
home: "/home/bob"
|
||||||
|
|
||||||
# background image
|
# background image
|
||||||
i3_desktop_background: "~/Bilder/wallpaper.jpg"
|
i3_desktop_background: "~/Bilder/wallpaper.jpg"
|
||||||
|
@ -80,6 +82,21 @@ For a good overview about possible variables, please have a look into ``defaults
|
||||||
workspace: 7
|
workspace: 7
|
||||||
on_startup: true
|
on_startup: true
|
||||||
|
|
||||||
# lock your screen after 3 hours
|
# lock your screen after 90 min
|
||||||
enable_lock_after_time: true
|
enable_lock_after_time: true
|
||||||
|
|
||||||
|
files/rofi/dracula_dark.rasi
|
||||||
|
|
||||||
|
# enable multiple i3blocks options
|
||||||
|
i3_i3blocks_options:
|
||||||
|
weather: true
|
||||||
|
audio_volume: true
|
||||||
|
wifisignal: true
|
||||||
|
ipaddress: true
|
||||||
|
clock: true
|
||||||
|
battery: true
|
||||||
|
ddate: true
|
||||||
|
|
||||||
|
# choose rofi theme
|
||||||
|
i3_rofi_config_file: 'files/rofi/dracula_dark.rasi'
|
||||||
```
|
```
|
||||||
|
|
|
@ -34,7 +34,7 @@ i3wm_user_list:
|
||||||
home: "{{ ansible_env.HOME | default('/home/{{ ansible_user_id }}') }}"
|
home: "{{ ansible_env.HOME | default('/home/{{ ansible_user_id }}') }}"
|
||||||
|
|
||||||
## set default font size
|
## set default font size
|
||||||
i3_font_size: 10
|
i3_font_size: 11
|
||||||
i3_focus_follows_mouse: true
|
i3_focus_follows_mouse: true
|
||||||
|
|
||||||
# set i3lock options
|
# set i3lock options
|
||||||
|
@ -60,6 +60,7 @@ i3_terminal: "terminator"
|
||||||
# install additional packages
|
# install additional packages
|
||||||
i3_packages_extra:
|
i3_packages_extra:
|
||||||
- ranger
|
- ranger
|
||||||
|
- fonts-fork-awesome
|
||||||
|
|
||||||
i3wm_copy_wallpapers: true
|
i3wm_copy_wallpapers: true
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
group: "{{ i3wm_usr.user }}"
|
group: "{{ i3wm_usr.user }}"
|
||||||
|
|
||||||
- name: Copy multiple images
|
- name: Copy multiple images
|
||||||
|
become: true
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ item.src }}"
|
src: "{{ item.src }}"
|
||||||
dest: "{{ item.dest }}"
|
dest: "{{ item.dest }}"
|
||||||
|
|
|
@ -10,6 +10,13 @@ focus_follows_mouse {% if i3_focus_follows_mouse | bool %}yes{% else %}no{% endi
|
||||||
# Use Mouse+$mod to drag floating windows to their wanted position
|
# Use Mouse+$mod to drag floating windows to their wanted position
|
||||||
floating_modifier $mod
|
floating_modifier $mod
|
||||||
|
|
||||||
|
# startup apps and window decs
|
||||||
|
default_orientation horizontal
|
||||||
|
workspace_layout tabbed
|
||||||
|
|
||||||
|
# Hide borders
|
||||||
|
hide_edge_borders smart
|
||||||
|
|
||||||
# start a terminal
|
# start a terminal
|
||||||
bindsym $mod+Return exec $term
|
bindsym $mod+Return exec $term
|
||||||
bindsym $mod+Shift+Return exec $term -e tmux
|
bindsym $mod+Shift+Return exec $term -e tmux
|
||||||
|
|
Loading…
Reference in a new issue