Compare commits

...

2 Commits

2 changed files with 14 additions and 13 deletions
+8 -8
View File
@@ -137,17 +137,17 @@ bindsym shift+XF86MonBrightnessDown exec --no-startup-id "light -U 10; notify-se
# TBD: Why is the displayed volume not showing up like `light -G` above? # TBD: Why is the displayed volume not showing up like `light -G` above?
# Use the comma and period keys to change volume. # Use the comma and period keys to change volume.
bindsym $mod+comma exec --no-startup-id bash -c 'source /usr/local/bin/volume.function && volume -2 && notify-send "Volume -" $(vol-d)' bindsym $mod+comma exec --no-startup-id bash -c 'source /usr/local/bin/volume.function && volume -5 && notify-send "Volume -" $(vol-d)'
bindsym $mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +2 && notify-send 'Volume +' $(vol-d)" bindsym $mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +5 && notify-send 'Volume +' $(vol-d)"
bindsym shift+$mod+comma exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -10 && notify-send 'Volume ---' $(vol-d)" bindsym shift+$mod+comma exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -25 && notify-send 'Volume ---' $(vol-d)"
bindsym shift+$mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +10 && notify-send 'Volume +++' $(vol-d)" bindsym shift+$mod+period exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +25 && notify-send 'Volume +++' $(vol-d)"
# Actual volume keys. # Actual volume keys.
bindsym XF86AudioMute exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume mute && notify-send 'Volume Muted' $(vol-d)" bindsym XF86AudioMute exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume mute && notify-send 'Volume Muted' $(vol-d)"
bindsym XF86AudioRaiseVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +2 && notify-send 'Volume +' $(vol-d)" bindsym XF86AudioRaiseVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +5 && notify-send 'Volume +' $(vol-d)"
bindsym XF86AudioLowerVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -2 && notify-send 'Volume -' $(vol-d)" bindsym XF86AudioLowerVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -5 && notify-send 'Volume -' $(vol-d)"
bindsym shift+XF86AudioRaiseVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +10 && notify-send 'Volume +++' $(vol-d)" bindsym shift+XF86AudioRaiseVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume +25 && notify-send 'Volume +++' $(vol-d)"
bindsym shift+XF86AudioLowerVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -10 && notify-send 'Volume ---' $(vol-d)" bindsym shift+XF86AudioLowerVolume exec --no-startup-id bash -c "source /usr/local/bin/volume.function && volume -25 && notify-send 'Volume ---' $(vol-d)"
# Define names for default workspaces for which we configure key bindings later on. # Define names for default workspaces for which we configure key bindings later on.
+6 -5
View File
@@ -1194,9 +1194,9 @@
{{ function_loop }} {{ function_loop }}
{{ process_notify_log }} {{ process_notify_log }}
- name: General | Account Management | Users | Files | .profile - name: General | Account Management | Users | Files | .profile + .xsessionrc
blockinfile: blockinfile:
path: "{{ item }}/.profile" path: "{{ user_root.home }}/{{ item }}"
block: | block: |
{{ rc_profile }} {{ rc_profile }}
@@ -1207,10 +1207,11 @@
create: yes create: yes
backup: no backup: no
loop: loop:
- "{{ user_root.home }}" - ".profile"
- "{{ user_user.home }}" - ".xprofile"
- ".xsessionrc"
ignore_errors: yes ignore_errors: yes
when: user_root.home != "" and user_user.home != "" when: user_user.home != ""
- name: General | Account Management | Users | Files | .bashrc - name: General | Account Management | Users | Files | .bashrc
blockinfile: blockinfile: