Compare commits

...
6 Commits
10 changed files with 43 additions and 12 deletions
+1 -1
View File
@@ -5,4 +5,4 @@ interpreter_python = auto_silent
[privilege_escalation] [privilege_escalation]
become_ask_pass = True become_ask_pass = True
become_method: doas #become_method: doas
+1 -1
View File
@@ -1,3 +1,3 @@
username: "mike" username: "{{ ansible_user_id }}"
src_dir: "/usr/local/src" src_dir: "/usr/local/src"
+5 -3
View File
@@ -1,7 +1,9 @@
- hosts: localhost - hosts: localhost
connection: local connection: local
roles: roles:
- dmenu
- mpv
- arkenfox
- dwm - dwm
- st
- dmenu
- dwmblocks-async
- sxhkd
- arkenfox
+4
View File
@@ -25,3 +25,7 @@ user_pref("browser.safebrowsing.downloads.remote.block_uncommon", false);
user_pref("media.eme.enabled", false); user_pref("media.eme.enabled", false);
// Disables UI setting which also disables the DRM prompt // Disables UI setting which also disables the DRM prompt
user_pref("browser.eme.ui.enabled", false); user_pref("browser.eme.ui.enabled", false);
/* 0830: enable separate default search engine in Private Windows and its UI setting
* [SETTING] Search>Default Search Engine>Choose a different default search engine for Private Windows only ***/
user_pref("browser.search.separatePrivateDefault", false); // [FF70+]
+1 -1
View File
@@ -1,6 +1,6 @@
- name: Clone source code from gitea - name: Clone source code from gitea
ansible.builtin.git: ansible.builtin.git:
repo: "https://git.mjwilson.org/mike/{{ role_name }}" repo: "ssh://git@git.mjwilson.org:2222/mike/{{ role_name }}.git"
dest: "{{ src_dir }}/{{ role_name }}" dest: "{{ src_dir }}/{{ role_name }}"
- name: Run build - name: Run build
+5 -5
View File
@@ -1,10 +1,10 @@
- name: Pull down dwm build from gitea - name: Pull down build from gitea
ansible.builtin.git: ansible.builtin.git:
repo: "https://git.mjwilson.org/mike/dwm" repo: "ssh://git@git.mjwilson.org:2222/mike/{{ role_name }}.git"
dest: "{{ src_dir }}/dwm" dest: "{{ src_dir }}/{{ role_name }}"
- name: Build DWM - name: Build
community.general.make: community.general.make:
chdir: "{{ src_dir }}/dwm" chdir: "{{ src_dir }}/{{ role_name }}"
params: params:
clean: clean:
+11
View File
@@ -0,0 +1,11 @@
- name: Pull down build from gitea
ansible.builtin.git:
repo: "ssh://git@git.mjwilson.org:2222/mike/{{ role_name }}.git"
dest: "{{ src_dir }}/{{ role_name }}"
- name: Build
community.general.make:
chdir: "{{ src_dir }}/{{ role_name }}"
params:
clean:
become: true
+11
View File
@@ -0,0 +1,11 @@
- name: Pull down build from gitea
ansible.builtin.git:
repo: "ssh://git@git.mjwilson.org:2222/mike/{{ role_name }}.git"
dest: "{{ src_dir }}/{{ role_name }}"
- name: Build
community.general.make:
chdir: "{{ src_dir }}/{{ role_name }}"
params:
clean:
become: true
+3
View File
@@ -1,6 +1,9 @@
# Launch Firefox # Launch Firefox
super + w super + w
firefox firefox
# Launch Firefox Private Window
super + shift + w
firefox --private-window
# Capture entire screen and save to clipboard # Capture entire screen and save to clipboard
Print Print
+1 -1
View File
@@ -7,4 +7,4 @@
- name: Install config file - name: Install config file
ansible.builtin.copy: ansible.builtin.copy:
src: sxhkdrc src: sxhkdrc
dest: "/home/{{ username }}/.config/sxhkd" dest: "~/.config/sxhkd"