1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_sway.git synced 2024-08-16 13:49:49 +02:00

Change launcher to fuzzel

This commit is contained in:
L3D 2024-07-27 12:16:07 +02:00
parent a0c14b4ad6
commit f55a4c6002
Signed by: l3d
GPG key ID: CD08445BFF4313D1
4 changed files with 12 additions and 2 deletions

View file

@ -39,6 +39,8 @@ sway__waybar_modules_right:
- "clock"
- "tray"
sway__launcher: 'fuzzel'
sway__install_launcher: ['fuzzel']
sway__waybar_font_size: '13px'
sway__waybar_light_up: 'light -A 1'
sway__waybar_light_down: 'light -U 1'

View file

@ -39,3 +39,10 @@
state: "present"
become: true
with_items: "{{ sway__term_pkgs }}"
- name: Ensure launcher Packages are installed
ansible.builtin.apt:
name: "{{ item }}"
state: "present"
become: true
with_items: "{{ sway__install_launcher }}"

View file

@ -22,7 +22,8 @@ set $term {{ sway__term }}
# Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on.
set $menu dmenu_path | dmenu | xargs swaymsg exec --
# set $menu dmenu_path | dmenu | xargs swaymsg exec --
set $menu {{ sway__launcher }}
include /etc/sway/config-vars.d/*

View file

@ -1,3 +1,3 @@
---
playbook_version_number: 9 # should be int
playbook_version_number: 10 # should be int
playbook_version_path: 'role-roles-ansible.sway.version'