1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_linux_desktop_setup.git synced 2024-09-14 19:54:51 +02:00
ansible_linux_desktop_setup/group_vars/all.yml

73 lines
1.7 KiB
YAML
Raw Normal View History

2020-11-29 22:38:53 +01:00
---
2020-12-16 17:35:28 +01:00
#
# roles/dotfiles
#
# enable keychain as ssh agent
dotfiles__additional_user_bashrc_lines:
2021-03-11 21:42:35 +01:00
- 'eval $(keychain --eval --quiet id_ed25519)'
- '_gopass_bash_autocomplete() {'
- ' local cur opts base'
- ' COMPREPLY=()'
- ' cur="${COMP_WORDS[COMP_CWORD]}"'
- ' opts=$( ${COMP_WORDS[@]:0:$COMP_CWORD} --generate-bash-completion )'
- " local IFS=$'\n'"
- ' COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )'
- ' return 0'
- '}'
- 'complete -F _gopass_bash_autocomplete gopass'
2020-12-16 17:35:28 +01:00
# roles/authorized_keys
#
# define dir for ssh keys
ssh_public_key_store: 'admin_ssh_keys'
i3_keybindings_extra:
2021-03-11 21:52:51 +01:00
- 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
2020-12-16 17:35:28 +01:00
i3_applications:
2021-03-11 21:52:51 +01:00
- application:
class: "firefox"
name: "firefox"
workspace: 2
on_startup: true
- application:
class: "Thunderbird"
name: "thunderbird"
workspace: 9
on_startup: true
2020-12-16 17:35:28 +01:00
i3_run_on_startup:
2021-03-11 21:52:51 +01:00
# - nextcloud
- sudo nm-applet
2020-12-16 17:35:28 +01:00
2020-11-29 22:38:53 +01:00
# globaly enably simple versionscheck - if available
submodules_versioncheck: true