mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-24 16:28:44 +00:00
lint: fixes
This commit is contained in:
parent
30142464c5
commit
710ac7e69a
9 changed files with 9 additions and 12 deletions
|
|
@ -5,11 +5,9 @@
|
|||
- name: configure_in
|
||||
prompt: "Specify comma separated list of required dotfile packages (bash, scripts, cli, git, ssh, gui, de, quickshell, wm)"
|
||||
private: false
|
||||
vars_prompt:
|
||||
- name: apps_in
|
||||
prompt: "Specify comma separated list of required installation packages (ansible, cli, gui, host, proxy, wm, quickshell)"
|
||||
private: false
|
||||
vars_prompt:
|
||||
- name: tools_in
|
||||
prompt: "Specify comma separated list of required tool packages (cpp, js, haskell, ocaml, coq, txt, lang, truffle, gamedev, qt)"
|
||||
private: false
|
||||
|
|
|
|||
|
|
@ -52,7 +52,8 @@
|
|||
become: true
|
||||
ansible.builtin.unarchive:
|
||||
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"
|
||||
keep_newer: true
|
||||
mode: a
|
||||
|
|
|
|||
|
|
@ -18,5 +18,3 @@
|
|||
# name:
|
||||
# - qt6-creator
|
||||
# state: latest
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -46,6 +46,7 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ ansible_env.HOME }}/idea"
|
||||
state: directory
|
||||
mode: a
|
||||
- name: Installing intellij idea
|
||||
ansible.builtin.unarchive:
|
||||
remote_src: true
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
src: '{{ role_path }}/files/.config/fish/fish_variables'
|
||||
dest: '{{ ansible_env.HOME }}/.config/fish/fish_variables'
|
||||
force: false
|
||||
mode: a
|
||||
|
||||
# apps
|
||||
- name: Linking tmux configuration
|
||||
|
|
|
|||
|
|
@ -4,4 +4,3 @@
|
|||
dest: '{{ ansible_env.HOME }}/.config/quickshell'
|
||||
state: link
|
||||
force: true
|
||||
|
||||
|
|
|
|||
|
|
@ -7,4 +7,3 @@
|
|||
- python3-github3py
|
||||
- python3-rpm
|
||||
state: latest
|
||||
|
||||
|
|
|
|||
|
|
@ -23,13 +23,13 @@
|
|||
ansible.builtin.file:
|
||||
path: "{{ ansible_env.HOME }}/.local/share/fonts"
|
||||
state: directory
|
||||
# mode: a
|
||||
mode: a
|
||||
|
||||
- name: Downloading material design icons font
|
||||
ansible.builtin.get_url:
|
||||
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"
|
||||
# mode: a
|
||||
mode: a
|
||||
force: false
|
||||
|
||||
- name: Updating fonts cache
|
||||
|
|
@ -55,8 +55,9 @@
|
|||
|
||||
- name: Installing dgop v0.0.9 (sensors data utility)
|
||||
become: true
|
||||
ansible.builtin.get_url:
|
||||
url: "https://github.com/AvengeMedia/dgop/releases/download/v0.0.9/dgop-v0.0.9-linux-amd64"
|
||||
ansible.builtin.unarchive:
|
||||
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 (?)
|
||||
mode: a+x
|
||||
force: true
|
||||
|
|
|
|||
|
|
@ -11,4 +11,3 @@
|
|||
name:
|
||||
- hyprland
|
||||
state: latest
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue