Compare commits
4 Commits
7703621506
...
18c73ef8f1
| Author | SHA1 | Date | |
|---|---|---|---|
| 18c73ef8f1 | |||
| 9385652e8b | |||
| 5198256bf7 | |||
| 67ac6797df |
@@ -1,4 +1,4 @@
|
||||
font_size: 11
|
||||
font_size: 12
|
||||
letter_space: 0
|
||||
|
||||
users:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
font_size: 11
|
||||
font_size: 12
|
||||
letter_space: 0
|
||||
|
||||
users:
|
||||
|
||||
@@ -150,7 +150,7 @@ font:
|
||||
style: Bold Italic
|
||||
|
||||
# Point size
|
||||
size: {{ machine.font_size }}
|
||||
size: {{ machine.font_size|int - 3 }}
|
||||
|
||||
# Offset is the extra space around each character. `offset.y` can be thought
|
||||
# of as modifying the line spacing, and `offset.x` as modifying the letter
|
||||
|
||||
@@ -7,8 +7,8 @@ Wants=blueman.service
|
||||
Wants=dpms.service
|
||||
Wants=dunst.service
|
||||
Wants=element.service
|
||||
{% for profile in user.firefox_profiles|default([]) %}
|
||||
Wants=firefox@{{ profile.name }}.service
|
||||
{% for profile in (user.firefox_profiles|default({})).keys() %}
|
||||
Wants=firefox@{{ profile }}.service
|
||||
{% endfor %}
|
||||
Wants=gpg-agent.service
|
||||
Wants=gnome-keyring.service
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
#!/usr/bin/env bash
|
||||
rofi -show combi -combi-modi run,drun -display-combi "run"
|
||||
rofi -show combi -combi-modi run -display-combi "run"
|
||||
|
||||
@@ -18,3 +18,7 @@ if [[ -f /usr/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]] ; the
|
||||
elif [[ -f /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]] ; then
|
||||
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
fi
|
||||
|
||||
{% if distro == 'ubuntu' %}
|
||||
alias imv=imv-x11
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user