lint: fixes

This commit is contained in:
ProgramSnail 2025-08-22 18:26:22 +03:00
parent 30142464c5
commit 710ac7e69a
9 changed files with 9 additions and 12 deletions

View file

@ -5,11 +5,9 @@
- name: configure_in - name: configure_in
prompt: "Specify comma separated list of required dotfile packages (bash, scripts, cli, git, ssh, gui, de, quickshell, wm)" prompt: "Specify comma separated list of required dotfile packages (bash, scripts, cli, git, ssh, gui, de, quickshell, wm)"
private: false private: false
vars_prompt:
- name: apps_in - name: apps_in
prompt: "Specify comma separated list of required installation packages (ansible, cli, gui, host, proxy, wm, quickshell)" prompt: "Specify comma separated list of required installation packages (ansible, cli, gui, host, proxy, wm, quickshell)"
private: false private: false
vars_prompt:
- name: tools_in - name: tools_in
prompt: "Specify comma separated list of required tool packages (cpp, js, haskell, ocaml, coq, txt, lang, truffle, gamedev, qt)" prompt: "Specify comma separated list of required tool packages (cpp, js, haskell, ocaml, coq, txt, lang, truffle, gamedev, qt)"
private: false private: false

View file

@ -52,7 +52,8 @@
become: true become: true
ansible.builtin.unarchive: ansible.builtin.unarchive:
remote_src: true remote_src: true
src: "https://github.com/LuaLS/lua-language-server/releases/download/{{ lua_lsp_version.tag }}/lua-language-server-{{ lua_lsp_version.tag }}-linux-x64.tar.gz" src:
"https://github.com/LuaLS/lua-language-server/releases/download/{{ lua_lsp_version.tag }}/lua-language-server-{{ lua_lsp_version.tag }}-linux-x64.tar.gz"
dest: "{{ ansible_env.HOME }}/.lua_lsp" dest: "{{ ansible_env.HOME }}/.lua_lsp"
keep_newer: true keep_newer: true
mode: a mode: a

View file

@ -18,5 +18,3 @@
# name: # name:
# - qt6-creator # - qt6-creator
# state: latest # state: latest

View file

@ -46,6 +46,7 @@
ansible.builtin.file: ansible.builtin.file:
path: "{{ ansible_env.HOME }}/idea" path: "{{ ansible_env.HOME }}/idea"
state: directory state: directory
mode: a
- name: Installing intellij idea - name: Installing intellij idea
ansible.builtin.unarchive: ansible.builtin.unarchive:
remote_src: true remote_src: true

View file

@ -41,6 +41,7 @@
src: '{{ role_path }}/files/.config/fish/fish_variables' src: '{{ role_path }}/files/.config/fish/fish_variables'
dest: '{{ ansible_env.HOME }}/.config/fish/fish_variables' dest: '{{ ansible_env.HOME }}/.config/fish/fish_variables'
force: false force: false
mode: a
# apps # apps
- name: Linking tmux configuration - name: Linking tmux configuration

View file

@ -4,4 +4,3 @@
dest: '{{ ansible_env.HOME }}/.config/quickshell' dest: '{{ ansible_env.HOME }}/.config/quickshell'
state: link state: link
force: true force: true

View file

@ -7,4 +7,3 @@
- python3-github3py - python3-github3py
- python3-rpm - python3-rpm
state: latest state: latest

View file

@ -23,13 +23,13 @@
ansible.builtin.file: ansible.builtin.file:
path: "{{ ansible_env.HOME }}/.local/share/fonts" path: "{{ ansible_env.HOME }}/.local/share/fonts"
state: directory state: directory
# mode: a mode: a
- name: Downloading material design icons font - name: Downloading material design icons font
ansible.builtin.get_url: ansible.builtin.get_url:
url: "https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsRounded%5BFILL%2CGRAD%2Copsz%2Cwght%5D.ttf" url: "https://github.com/google/material-design-icons/raw/master/variablefont/MaterialSymbolsRounded%5BFILL%2CGRAD%2Copsz%2Cwght%5D.ttf"
dest: "{{ ansible_env.HOME }}/.local/share/fonts/MaterialSymbolsRounded.ttf" dest: "{{ ansible_env.HOME }}/.local/share/fonts/MaterialSymbolsRounded.ttf"
# mode: a mode: a
force: false force: false
- name: Updating fonts cache - name: Updating fonts cache
@ -55,8 +55,9 @@
- name: Installing dgop v0.0.9 (sensors data utility) - name: Installing dgop v0.0.9 (sensors data utility)
become: true become: true
ansible.builtin.get_url: ansible.builtin.unarchive:
url: "https://github.com/AvengeMedia/dgop/releases/download/v0.0.9/dgop-v0.0.9-linux-amd64" remote_src: true
src: "https://github.com/AvengeMedia/dgop/releases/download/v0.0.9/dgop-v0.0.9-linux-amd64"
dest: "/usr/bin/" # TODO: user local install (?) dest: "/usr/bin/" # TODO: user local install (?)
mode: a+x mode: a+x
force: true force: true

View file

@ -11,4 +11,3 @@
name: name:
- hyprland - hyprland
state: latest state: latest