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 letter_space: 0
users: users:

View File

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

View File

@@ -150,7 +150,7 @@ font:
style: Bold Italic style: Bold Italic
# Point size # 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 # 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 # 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=dpms.service
Wants=dunst.service Wants=dunst.service
Wants=element.service Wants=element.service
{% for profile in user.firefox_profiles|default([]) %} {% for profile in (user.firefox_profiles|default({})).keys() %}
Wants=firefox@{{ profile.name }}.service Wants=firefox@{{ profile }}.service
{% endfor %} {% endfor %}
Wants=gpg-agent.service Wants=gpg-agent.service
Wants=gnome-keyring.service Wants=gnome-keyring.service

View File

@@ -3,7 +3,7 @@
gtk-theme-name="Breeze" gtk-theme-name="Breeze"
gtk-icon-theme-name="breeze-dark" gtk-icon-theme-name="breeze-dark"
gtk-font-name="DejaVu Sans {{ machine.font_size|int - 2 }}" gtk-font-name="DejaVu Sans {{ machine.font_size| int - 2 }}"
gtk-cursor-theme-name="breeze_cursors" gtk-cursor-theme-name="breeze_cursors"
gtk-cursor-theme-size=0 gtk-cursor-theme-size=0
gtk-toolbar-style=GTK_TOOLBAR_BOTH gtk-toolbar-style=GTK_TOOLBAR_BOTH

View File

@@ -1,2 +1,2 @@
#!/usr/bin/env bash #!/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 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 source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi fi
{% if distro == 'ubuntu' %}
alias imv=imv-x11
{% endif %}