Script til application menu

This commit is contained in:
2025-06-16 18:43:57 +02:00
parent fd9791e633
commit b7c874d949
2 changed files with 9 additions and 0 deletions

View File

@@ -151,6 +151,13 @@
dest: "/home/{{ username }}/.local/bin/hypr-keys.sh" dest: "/home/{{ username }}/.local/bin/hypr-keys.sh"
mode: '0755' mode: '0755'
- name: "LAUNCHER SCRIPT :: Opret wofi launcher script"
become: true
become_user: "{{ username }}"
ansible.builtin.template:
src: "templates/launch-wofi.sh.j2"
dest: "/home/{{ username }}/.local/bin/launch_wofi.sh"
mode: '0755'
- name: "FIREWALL :: Konfigurer UFW's standardpolitikker" - name: "FIREWALL :: Konfigurer UFW's standardpolitikker"
tags: firewall tags: firewall

View File

@@ -0,0 +1,2 @@
# Køre wofi application menu
wofi --show drun --conf "$HOME/.config/wofi/config" --style "$HOME/.config/wofi/style.css"