From 8941085248efc7be73cbf071dfd0160e39e49315 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@clevo" Date: Sun, 14 Aug 2022 09:53:55 +0200 Subject: [PATCH] Minor linting fixes --- roles/base/tasks/main.yml | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/roles/base/tasks/main.yml b/roles/base/tasks/main.yml index d6d0c5e..09a9cb8 100644 --- a/roles/base/tasks/main.yml +++ b/roles/base/tasks/main.yml @@ -6,25 +6,25 @@ - archlinux-keyring - base-devel - libnotify - - pacman-contrib # for checkupdates, paccache, pacdiff... - - pkgfile # get hint on missing package when command not found + - pacman-contrib # for checkupdates, paccache, pacdiff... + - pkgfile # get hint on missing package when command not found - python-pip - python-wheel - python-setuptools - reflector - - xorg-xinit # enable xinit to avoid having to type 'startx' + - xorg-xinit # enable xinit to avoid having to type 'startx' - ttf-font-awesome - ttf-jetbrains-mono - ttf-fira-code - - rsync # used for backup + - rsync # used for backup - curl - wget - xorg - - numlockx # activate numlock (set in .xinitrc) + - numlockx # activate numlock (set in .xinitrc) - dunst - - udiskie # automount external drives (set in .xinitrc) - - xmlstarlet # for clitip - - pandoc # for clitip + - udiskie # automount external drives (set in .xinitrc) + - xmlstarlet # for clitip + - pandoc # for clitip when: ansible_facts['distribution'] == 'Archlinux' - name: Install packages (Debian) @@ -37,19 +37,19 @@ - python3-pip - python3-wheel - python3-setuptools - - xinit # enable xinit to avoid having to type 'startx' + - xinit # enable xinit to avoid having to type 'startx' - fonts-font-awesome - fonts-jetbrains-mono - fonts-firacode - - rsync # used for backup + - rsync # used for backup - curl - wget - xorg - - numlockx # activate numlock (set in .xinitrc) + - numlockx # activate numlock (set in .xinitrc) - dunst - - udiskie # automount external drives (set in .xinitrc) - - xmlstarlet # for clitip - - pandoc # for clitip + - udiskie # automount external drives (set in .xinitrc) + - xmlstarlet # for clitip + - pandoc # for clitip when: ansible_facts['distribution'] == 'Debian' - name: Update pkgfile for Archlinux @@ -61,3 +61,4 @@ copy: src: Xmodmap dest: ~/.Xmodmap + mode: 0644