mirror of
https://codeberg.org/ProgramSnail/config.git
synced 2025-12-06 07:28:44 +00:00
dotfiles basic config for quickshell and wms
This commit is contained in:
parent
2eb5a886f8
commit
1947c8e0e4
3 changed files with 24 additions and 1 deletions
|
|
@ -28,6 +28,14 @@
|
|||
ansible.builtin.import_tasks: gui.yml
|
||||
when: "'gui' in configure"
|
||||
|
||||
- name: Desctop envionment config
|
||||
- name: Desktop envionment config
|
||||
ansible.builtin.import_tasks: de.yml
|
||||
when: "'de' in configure"
|
||||
|
||||
- name: Quickshell config
|
||||
ansible.builtin.import_tasks: de.yml
|
||||
when: "'quickshell' in configure"
|
||||
|
||||
- name: WMs config
|
||||
ansible.builtin.import_tasks: de.yml
|
||||
when: "'wm' in configure"
|
||||
|
|
|
|||
7
roles/dotfiles/tasks/quickshell.yml
Normal file
7
roles/dotfiles/tasks/quickshell.yml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
- name: Linking quickshell configuration
|
||||
ansible.builtin.file:
|
||||
src: '{{ role_path }}/files/.config/quickshell'
|
||||
dest: '{{ ansible_env.HOME }}/.config/quickshell'
|
||||
state: link
|
||||
force: true
|
||||
|
||||
8
roles/dotfiles/tasks/wm.yml
Normal file
8
roles/dotfiles/tasks/wm.yml
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
- name: Linking niri configuration
|
||||
ansible.builtin.file:
|
||||
src: '{{ role_path }}/files/niri'
|
||||
dest: '{{ ansible_env.HOME }}/niri'
|
||||
state: link
|
||||
force: true
|
||||
|
||||
# TODO: hyprland
|
||||
Loading…
Add table
Add a link
Reference in a new issue