2025-03-26_auto-backup_tracked

This commit is contained in:
Quinn
2025-03-26 21:21:41 +01:00
committed by Quinn
parent 97b414f0d5
commit cd804be03b
6 changed files with 12 additions and 12 deletions

View File

@@ -6,6 +6,7 @@ include "%L"
<Multi_key> <g> <a> <m> : "γ" U03B3 # GREEK SMALL GAMMA <Multi_key> <g> <a> <m> : "γ" U03B3 # GREEK SMALL GAMMA
<Multi_key> <d> <e> <l> : "δ" U03B4 # GREEK SMALL DELTA <Multi_key> <d> <e> <l> : "δ" U03B4 # GREEK SMALL DELTA
<Multi_key> <t> <h> <e> : "θ" U03B8 # GREEK SMALL LETTER THETA <Multi_key> <t> <h> <e> : "θ" U03B8 # GREEK SMALL LETTER THETA
<Multi_key> <m> <u> : "μ" U03BC # GREEK SMALL LETTER MU
<Multi_key> <p> <i> : "π" U03C0 # GREEK SMALL LETTER PI <Multi_key> <p> <i> : "π" U03C0 # GREEK SMALL LETTER PI
<Multi_key> <s> <i> <g> : "σ" U03C3 # GREEK SMALL LETTER SIGMA <Multi_key> <s> <i> <g> : "σ" U03C3 # GREEK SMALL LETTER SIGMA
<Multi_key> <t> <a> <u> : "τ" U03C4 # GREEK SMALL LETTER TAU <Multi_key> <t> <a> <u> : "τ" U03C4 # GREEK SMALL LETTER TAU
@@ -19,6 +20,7 @@ include "%L"
<Multi_key> <G> <A> <M> : "Γ" U0393 # GREEK CAPITAL GAMMA <Multi_key> <G> <A> <M> : "Γ" U0393 # GREEK CAPITAL GAMMA
<Multi_key> <D> <E> <L> : "Δ" U0394 # GREEK CAPITAL DELTA <Multi_key> <D> <E> <L> : "Δ" U0394 # GREEK CAPITAL DELTA
<Multi_key> <T> <H> <E> : "Θ" U0398 # GREEK CAPITAL LETTER THETA <Multi_key> <T> <H> <E> : "Θ" U0398 # GREEK CAPITAL LETTER THETA
<Multi_key> <M> <U> : "Μ" U039C # GREEK SMALL LETTER MU
<Multi_key> <P> <I> : "∏" U03A0 # GREEK CAPITAL LETTER PI <Multi_key> <P> <I> : "∏" U03A0 # GREEK CAPITAL LETTER PI
<Multi_key> <S> <I> <G> : "∑" U03A3 # GREEK CAPITAL LETTER SIGMA <Multi_key> <S> <I> <G> : "∑" U03A3 # GREEK CAPITAL LETTER SIGMA
<Multi_key> <T> <A> <U> : "Τ" U03A4 # GREEK CAPITAL LETTER TAU <Multi_key> <T> <A> <U> : "Τ" U03A4 # GREEK CAPITAL LETTER TAU

View File

@@ -1,3 +1,4 @@
#!/bin/bash
# #
# ~/.bashrc # ~/.bashrc
# #

View File

@@ -1,4 +0,0 @@
CompileFlags:
Add: [-std=c17]
Add: [-Wall, -Wextra, Wpedantic, -Wno-pointer-arith]
Add: [-DDEBUG]

View File

@@ -6,15 +6,20 @@ end_of_line = lf
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
indent_style = space indent_style = space
indent_size = 4 indent_size = tab
tab_width = 4
[*.{c,h,cpp,hpp}]
indent_style = space
tab_width = 4
[{makefile,Makefile}] [{makefile,Makefile}]
indent_style = tab indent_style = tab
indent_size = 2 tab_width = 2
[.*/{sh,bash}] [.*/{sh,bash}]
indent_style = tab indent_style = tab
indent_size = 2 tab_width = 2
[*.{yaml,json,toml}] [*.{yaml,json,toml}]
indent_style = space indent_style = space

View File

@@ -19,9 +19,5 @@ numlockx on # ensure numlock is on before setting keymap
[[ -f "$HOME/.xprofile" ]] && source "$HOME/xprofile" & # load the local xprofile configuration [[ -f "$HOME/.xprofile" ]] && source "$HOME/xprofile" & # load the local xprofile configuration
[[ -f "$HOME/.Xmodmap" ]] && xmodmap "$HOME/.Xmodmap" & # load local keymap [[ -f "$HOME/.Xmodmap" ]] && xmodmap "$HOME/.Xmodmap" & # load local keymap
# start the keyring daemon
eval "$(gnome-keyring-daemon --start)"
export SSH_AUTH_SOCK
# start the graphical environment (replaces shell) # start the graphical environment (replaces shell)
exec /usr/bin/cinnamon-session exec /usr/bin/cinnamon-session