mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
88 lines
1.9 KiB
YAML
88 lines
1.9 KiB
YAML
---
|
|
# some ssh role parameters
|
|
ssh_public_key_store: 'admin_ssh_keys'
|
|
home_sweet_home: false
|
|
install_keychain: true
|
|
# i3wm config:
|
|
enable_lock_after_time: true
|
|
|
|
base__additional_user_bashrc_lines:
|
|
- eval $(keychain --eval --quiet id_ed25519)
|
|
|
|
i3_packages_extra:
|
|
- ranger
|
|
- light
|
|
- pass
|
|
- gnome
|
|
- asciinema
|
|
- mtr
|
|
- evince
|
|
- speedtest-cli
|
|
|
|
i3_keybindings_extra:
|
|
- keybinding:
|
|
name: Volume (mute/unmute)
|
|
key: $mod+F12
|
|
exec: --no-startup-id pulsemixer --toggle-mute
|
|
- keybinding:
|
|
name: Volue (default)
|
|
key: $mod+Shift+F12
|
|
exec: --no-startup-id pulsemixer --set-volume 42
|
|
- keybinding:
|
|
name: volume-up
|
|
key: XF86AudioRaiseVolume
|
|
exec: --no-startup-id pulsemixer --change-volume +3
|
|
- keybinding:
|
|
name: volume-down
|
|
key: XF86AudioLowerVolume
|
|
exec: --no-startup-id pulsemixer --change-volume -5
|
|
- keybinding:
|
|
name: darker
|
|
key: XF86AudioMute
|
|
exec: --no-startup-id pulsemixer --toggle-mute
|
|
- keybinding:
|
|
name: darker
|
|
key: XF86MonBrightnessDown
|
|
exec: --no-startup-id sudo light -U 9
|
|
- keybinding:
|
|
name: lighter
|
|
key: XF86MonBrightnessUp
|
|
exec: --no-startup-id sudo light -A 6
|
|
|
|
|
|
i3_applications:
|
|
- application:
|
|
class: "firefox"
|
|
name: "firefox"
|
|
workspace: 2
|
|
on_startup: true
|
|
- application:
|
|
class: "Thunderbird"
|
|
name: "thunderbird"
|
|
workspace: 9
|
|
on_startup: true
|
|
|
|
i3_run_on_startup:
|
|
- nextcloud
|
|
- sudo nm-applet
|
|
|
|
|
|
i3_font_size: 11
|
|
i3_focus_follows_mouse: true
|
|
|
|
i3_desktop_background: "/home/{{ user }}/.config/background.png"
|
|
|
|
i3lock_options: "i3lock --image=/home/{{ user }}/.config/lockscreen.png --color 000000"
|
|
|
|
install_and_enable_cronie: true
|
|
|
|
# enable xtra aliases in basrc
|
|
git_pull_alias: true
|
|
git_typo_alias: true
|
|
|
|
# debug f00
|
|
print_os_vars: true
|
|
|
|
install_pass_as_password_manager: true
|
|
extra_bashrc: "alias dd='dd bs=4M status=progress oflag=dsync'"
|
|
temporarily_disable_screensaver: false
|