Compare commits

...

13 Commits

Author SHA1 Message Date
2018e47525 zsh: Remove GO* env variables 2021-09-25 19:11:59 +02:00
d946aa4b4c vim: Fix YCM compilation 2021-09-25 19:11:59 +02:00
408595d7e1 ansible: Fix systemd user unit masking 2021-09-25 19:11:59 +02:00
b924e780c3 i3: Move spotify to the very left of i3bar 2021-09-25 19:11:59 +02:00
e3158e02e4 i3: Add mic toggle mapping 2021-09-25 19:11:59 +02:00
a706259322 i3: Remap floating toggle 2021-09-25 19:11:59 +02:00
20f7fe43d2 git: ff-only on pull 2021-09-25 19:11:59 +02:00
b678d929ff dunst: Move window to bottom 2021-09-25 19:11:59 +02:00
9e5d3c5262 alacritty: Enable dynamic titles 2021-09-25 19:11:59 +02:00
cad6720173 Merge pull request #5 from hakoerber/dependabot/pip/cryptography-3.3.2
build(deps): bump cryptography from 3.2.1 to 3.3.2
2021-06-02 12:54:03 +02:00
0866a310cc Merge pull request #8 from hakoerber/dependabot/pip/ansible-2.10.7
build(deps): bump ansible from 2.10.4 to 2.10.7
2021-06-02 12:53:59 +02:00
dependabot[bot]
a35d7d78e1 build(deps): bump ansible from 2.10.4 to 2.10.7
Bumps [ansible](https://github.com/ansible/ansible) from 2.10.4 to 2.10.7.
- [Release notes](https://github.com/ansible/ansible/releases)
- [Commits](https://github.com/ansible/ansible/compare/v2.10.4...v2.10.7)

---
updated-dependencies:
- dependency-name: ansible
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-01 21:55:57 +00:00
dependabot[bot]
eb31b393e9 build(deps): bump cryptography from 3.2.1 to 3.3.2
Bumps [cryptography](https://github.com/pyca/cryptography) from 3.2.1 to 3.3.2.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/3.2.1...3.3.2)

Signed-off-by: dependabot[bot] <support@github.com>
2021-04-08 16:06:49 +00:00
8 changed files with 31 additions and 16 deletions

View File

@@ -78,7 +78,7 @@ window:
#title: Alacritty
# Allow terminal applications to change Alacritty's window title.
#dynamic_title: true
dynamic_title: true
# Window class (Linux/BSD only):
#class:

View File

@@ -29,7 +29,7 @@
# the top and down respectively.
# The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option.
geometry = "300x10-20+20"
geometry = "300x10-20-40"
# Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes

View File

@@ -113,6 +113,7 @@
requireForce = true
[pull]
rebase = true
ff = only
[url "ssh://git@code.hkoerber.de:2222/"]
insteadOf = https://code.hkoerber.de/

View File

@@ -77,8 +77,8 @@
set $focus_parent q
set $focus_child a
set $floating_toggle Shift+space
set $focus_mode_toggle space
set $floating_toggle Shift+p
set $focus_mode_toggle p
set $prev_on_output u
set $next_on_output i
@@ -345,6 +345,7 @@ bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 8 ; exec --no
bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 8 ; exec --no-startup-id $scriptdir/update-status
bindsym $mod+m exec --no-startup-id $scriptdir/pa-volume mute-toggle-mic
bindsym $mod+space exec --no-startup-id $scriptdir/pa-volume mute-toggle-mic
##############################################################################
### BARS #######################################################################

View File

@@ -19,10 +19,10 @@ general {
}
order += spotify
order += "yubikey"
order += "volume_status output"
order += "volume_status input"
order += spotify
order += "wifi"
order += "external_script presentation_mode"
order += "systemd redshift"

View File

@@ -1,7 +1,7 @@
ansible==2.10.4
ansible==2.10.7
ansible-base==2.10.3
cffi==1.14.4
cryptography==3.2.1
cryptography==3.3.2
ipaddress==1.0.23
Jinja2==2.11.3
jmespath==0.10.0

View File

@@ -58,12 +58,24 @@
become: true
become_user: root
- name: create systemd directory
file:
state: directory
path: "{{ item }}"
owner: "{{ user.name }}"
group: "{{ user_group_name }}"
loop:
- "/home/{{ user.name }}/.config/"
- "/home/{{ user.name }}/.config/systemd/"
- "/home/{{ user.name }}/.config/systemd/user/"
# No way to use the `systemd` module here, as it needs a logind
# session. So we have to handle the symlinks for masking ourselves.
- name: disable and mask systemd user units
systemd:
name: "{{ item }}"
enabled: false
masked: true
scope: user
file:
state: link
dest: "/home/{{ user.name }}/.config/systemd/user/{{ item }}"
src: "/dev/null"
with_items:
- gpg-agent.service
- gpg-agent.socket
@@ -300,9 +312,13 @@
changed_when: vim_plugins_stdout.stdout_lines|length != 0
- name: compile youcompleteme
# --force-sudo is required, as the script refuses to run
# in a sudo environment (i.e. if the SUDO_USER env variable
# is set). But of course, ansible uses that to assume the
# other user. It's fine.
shell: |
cd ~/.local/share/nvim/plugged/YouCompleteMe/
python3 ./install.py # --go-completer
python3 ./install.py --force-sudo
args:
creates: ~/.local/share/nvim/plugged/YouCompleteMe/third_party/ycmd/ycm_core.so
when: vim_plugins_stdout.stdout_lines|length != 0 or true

View File

@@ -38,9 +38,6 @@ export LC_COLLATE=C
export DOTFILES=~/dotfiles
export GOPATH=~/dev/go
export GOROOT=/usr/lib/go
export PATH=$PATH:$(go env GOPATH)/bin
export ACPI_LID_NAME=LID