mirror of
https://gitlab.com/sagidayan/linux-config.git
synced 2024-11-23 15:55:25 +00:00
fonts: Added missing fonts. gnome: dconf pop-shell
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
This commit is contained in:
parent
9e940f0866
commit
1a3a600890
5 changed files with 47 additions and 0 deletions
|
@ -59,3 +59,14 @@ name='Terminal'
|
||||||
|
|
||||||
[org/gnome/shell/extensions/clipboard-indicator]
|
[org/gnome/shell/extensions/clipboard-indicator]
|
||||||
toggle-menu=['<Control>grave']
|
toggle-menu=['<Control>grave']
|
||||||
|
|
||||||
|
[org/gnome/shell/extensions/pop-shell]
|
||||||
|
active-hint=true
|
||||||
|
active-hint-border-radius=uint32 23
|
||||||
|
focus-left=['<Super>Left', '<Super>h']
|
||||||
|
gap-inner=uint32 4
|
||||||
|
gap-outer=uint32 4
|
||||||
|
hint-color-rgba='rgb(255,255,255)'
|
||||||
|
smart-gaps=false
|
||||||
|
tile-by-default=true
|
||||||
|
|
||||||
|
|
BIN
files/fonts/codicon.ttf
Normal file
BIN
files/fonts/codicon.ttf
Normal file
Binary file not shown.
BIN
files/fonts/devicon.ttf
Normal file
BIN
files/fonts/devicon.ttf
Normal file
Binary file not shown.
|
@ -22,6 +22,7 @@
|
||||||
- tldr
|
- tldr
|
||||||
- bat
|
- bat
|
||||||
- fzf
|
- fzf
|
||||||
|
- unzip
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Copy gitconfig base
|
- name: Copy gitconfig base
|
||||||
|
|
|
@ -8,6 +8,16 @@
|
||||||
mode: '0755'
|
mode: '0755'
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
|
||||||
|
- name: Preparing for JetBrainsMono font installation
|
||||||
|
become: true
|
||||||
|
file:
|
||||||
|
path: /usr/share/fonts/jetbrains
|
||||||
|
state: directory
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: '0755'
|
||||||
|
changed_when: false
|
||||||
|
|
||||||
- name: Installing Hack Nerd Font
|
- name: Installing Hack Nerd Font
|
||||||
become: true
|
become: true
|
||||||
copy:
|
copy:
|
||||||
|
@ -17,6 +27,31 @@
|
||||||
group: root
|
group: root
|
||||||
mode: preserve
|
mode: preserve
|
||||||
|
|
||||||
|
- name: Installing codicon Font
|
||||||
|
become: true
|
||||||
|
copy:
|
||||||
|
src: fonts/codicon.ttf
|
||||||
|
dest: /usr/share/fonts/hack/codicon.ttf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: preserve
|
||||||
|
|
||||||
|
- name: Installing devicon Font
|
||||||
|
become: true
|
||||||
|
copy:
|
||||||
|
src: fonts/devicon.ttf
|
||||||
|
dest: /usr/share/fonts/hack/devicon.ttf
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: preserve
|
||||||
|
|
||||||
|
- name: Download and install Jetbrains mono nerdfonts
|
||||||
|
become: true
|
||||||
|
ansible.builtin.unarchive:
|
||||||
|
src: https://github.com/ryanoasis/nerd-fonts/releases/download/v3.2.1/JetBrainsMono.zip
|
||||||
|
dest: /usr/share/fonts/jetbrains
|
||||||
|
remote_src: yes
|
||||||
|
|
||||||
- name: Setting up fonts.conf (Fallback for emojis)
|
- name: Setting up fonts.conf (Fallback for emojis)
|
||||||
block:
|
block:
|
||||||
- name: Make sure fontconfig folder exists
|
- name: Make sure fontconfig folder exists
|
||||||
|
|
Loading…
Reference in a new issue