Compare commits

...

2 Commits

3 changed files with 12 additions and 8 deletions
+1
View File
@@ -257,6 +257,7 @@ bindsym $ctrl+$shift+2 workspace $ws2; exec "firefox-flatpak || firefox || firef
bindsym $ctrl+$shift+3 workspace $ws3; exec codium-flatpak; bindsym $ctrl+$shift+3 workspace $ws3; exec codium-flatpak;
bindsym $ctrl+$shift+4 workspace $ws4; exec code-flatpak; bindsym $ctrl+$shift+4 workspace $ws4; exec code-flatpak;
bindsym $ctrl+$shift+5 workspace $ws5; exec "session; dino" bindsym $ctrl+$shift+5 workspace $ws5; exec "session; dino"
bindsym $ctrl+$shift+7 workspace $ws7; exec "transmission || transmission-gtk || transmission-flatpak"
## Reloads, Restarts, Exit ## ## Reloads, Restarts, Exit ##
+7 -7
View File
@@ -135,15 +135,15 @@
when: ansible_service_mgr != "runit" when: ansible_service_mgr != "runit"
- name: General | Software | Services | Disable (runit) - name: General | Software | Services | Disable (runit)
service: shell: |
name: "{{ item.name }}" if [[ -e {{ runit_service_dir }}/{{ item.name }} ]]; then
state: stopped rm -v {{ runit_service_dir }}/{{ item.name }}
enabled: no fi
ignore_errors: yes ignore_errors: yes
loop: loop:
- {name: "{{ cups }}" - {name: "{{ cups }}" }
- {name: "{{ cups_pattern }}" - {name: "{{ cups_pattern }}" }
- {name: "{{ cups_browse }}"} - {name: "{{ cups_browse }}" }
- {name: "{{ cups_browse_pattern }}"} - {name: "{{ cups_browse_pattern }}"}
when: ansible_service_mgr == "runit" when: ansible_service_mgr == "runit"
+4 -1
View File
@@ -98,6 +98,9 @@
when: ansible_service_mgr not in ("runit") when: ansible_service_mgr not in ("runit")
- name: Workstation | Linux | Software | TLP | Enable + Start (runit) - name: Workstation | Linux | Software | TLP | Enable + Start (runit)
shell: "ln -s {{runit_script_dir }}/tlp {{ runit_service_dir }}/tlp" shell: |
if [[ ! -e {{ runit_service_dir }}/tlp ]]; then
ln -s {{ runit_script_dir }}/tlp {{ runit_service_dir }}/tlp
fi
when: ansible_service_mgr == "runit" when: ansible_service_mgr == "runit"