Increase default font size for codeblocks
This commit is contained in:
parent
787a8c843f
commit
879850373e
2 changed files with 20 additions and 0 deletions
15
roles/custom/fvs/files/lmn-codeblocks.sh
Normal file
15
roles/custom/fvs/files/lmn-codeblocks.sh
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
if [[ "$UID" -gt 10000 ]] && [[ ! -f ~/.config/codeblocks/default.conf ]] ; then
|
||||||
|
mkdir -p ~/.config/codeblocks
|
||||||
|
cat <<EOF > ~/.config/codeblocks/default.conf
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||||
|
<CodeBlocksConfig version="1">
|
||||||
|
<editor>
|
||||||
|
<FONT>
|
||||||
|
<str>
|
||||||
|
<![CDATA[Monospace 18]]>
|
||||||
|
</str>
|
||||||
|
</FONT>
|
||||||
|
</editor>
|
||||||
|
</CodeBlocksConfig>
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
@ -156,6 +156,11 @@
|
||||||
dest: /etc/profile.d/
|
dest: /etc/profile.d/
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
|
|
||||||
|
- name: Copy codeblocks config scripts
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: lmn-codeblocks.sh
|
||||||
|
dest: /etc/profile.d/
|
||||||
|
mode: '0644'
|
||||||
|
|
||||||
- name: Copy fvs-config.js to configure plasma
|
- name: Copy fvs-config.js to configure plasma
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue