Compare commits

...

4 Commits

Author SHA1 Message Date
18c73ef8f1 Try to standardize font size 2021-10-22 22:42:13 +02:00
9385652e8b Add imv alias on ubuntu 2021-10-22 22:39:02 +02:00
5198256bf7 rofi: Disable Desktop entries 2021-10-22 22:38:48 +02:00
67ac6797df Fix firefox list in autostart.target 2021-10-17 09:58:36 +02:00
7 changed files with 11 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
font_size: 11
font_size: 12
letter_space: 0
users:

View File

@@ -1,4 +1,4 @@
font_size: 11
font_size: 12
letter_space: 0
users:

View File

@@ -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

View File

@@ -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

View File

@@ -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"

View File

@@ -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 %}