Shell #12

Merged
mfocko merged 2 commits from shell into main 2020-10-11 22:46:47 +02:00
5 changed files with 26 additions and 29 deletions

View file

@ -2,7 +2,7 @@
- name: Fedora bootstrap
hosts: all
roles:
- role: set_dnf
- role: fedora_packages
become: yes
become_method: sudo
- flatpaks

View file

@ -0,0 +1,21 @@
---
- name: Upgrade all packages
dnf:
name: '*'
state: latest
- name: Install playerctl and flameshot
dnf:
name:
- playerctl
- flameshot
state: present
- name: Install all packages for shell
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present

View file

@ -1,17 +0,0 @@
---
# TODO: Set up repos
- name: Upgrade all packages
dnf:
name: '*'
state: latest
- name: Install playerctl for spotify
dnf:
name: playerctl
state: present
- name: Install flameshot for screenshots
dnf:
name: flameshot
state: present

View file

@ -1,15 +1,4 @@
---
- name: Install all packages for shell
become: yes
become_method: sudo
dnf:
name:
- zsh
- tmux
- neovim
- emacs
state: present
- name: Set default shell and generate SSH key
become: yes
become_method: sudo

View file

@ -5,6 +5,10 @@ set-window-option -g automatic-rename off
set-option -g allow-rename off
set-option -g renumber-windows on
set -g prefix C-a
unbind C-b
bind-key C-a send-prefix
unbind l
bind h select-pane -L