update some things
This commit is contained in:
parent
c8d19a52e0
commit
3cebee7f0f
7 changed files with 30 additions and 23 deletions
44
install
44
install
|
@ -52,29 +52,27 @@ if [ "$(uname)" = 'Linux' ] && grep -q 'ID=nixos' /etc/os-release; then
|
|||
fi
|
||||
|
||||
fonts_changed=false
|
||||
if [ "$(uname)" = 'Darwin' ]; then
|
||||
echo 'installing fonts...'
|
||||
mkdir -p ~/.local/share/fonts
|
||||
if ! test -d ~/.local/share/fonts/ComputerModern; then
|
||||
echo ' Computer Modern font missing. Installing...'
|
||||
tar xf .local/share/fonts/ComputerModern.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
if ! test -f ~/.local/share/fonts/NFM.ttf; then
|
||||
echo ' Nerd Font Mono font missing. Installing...'
|
||||
tar xf .local/share/fonts/NFM.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
if ! test -d ~/.local/share/fonts/SauceCodePro; then
|
||||
echo ' Source Code Pro Nerd Font missing. Installing...'
|
||||
tar xf .local/share/fonts/SauceCodePro.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
|
||||
if [ $fonts_changed = true ]; then
|
||||
echo ' updating the font cache...'
|
||||
fc-cache -f >> ~/.update-home.log
|
||||
fi
|
||||
echo 'installing fonts...'
|
||||
mkdir -p ~/.local/share/fonts
|
||||
if ! test -d ~/.local/share/fonts/ComputerModern; then
|
||||
echo ' Computer Modern font missing. Installing...'
|
||||
tar xf .local/share/fonts/ComputerModern.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
if ! test -f ~/.local/share/fonts/NFM.ttf; then
|
||||
echo ' Nerd Font Mono font missing. Installing...'
|
||||
tar xf .local/share/fonts/NFM.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
if ! test -d ~/.local/share/fonts/SauceCodePro; then
|
||||
echo ' Source Code Pro Nerd Font missing. Installing...'
|
||||
tar xf .local/share/fonts/SauceCodePro.tar.gz -C ~/.local/share/fonts >> ~/.update-home.log 2>&1
|
||||
fonts_changed=true
|
||||
fi
|
||||
|
||||
if [ $fonts_changed = true ]; then
|
||||
echo ' updating the font cache...'
|
||||
fc-cache -f >> ~/.update-home.log
|
||||
fi
|
||||
|
||||
cd "$CWD" || exit
|
||||
|
|
0
nixos/flake/flake.lock → nixos/.flake/flake.lock
generated
0
nixos/flake/flake.lock → nixos/.flake/flake.lock
generated
9
nixos/clang-format.org
Normal file
9
nixos/clang-format.org
Normal file
|
@ -0,0 +1,9 @@
|
|||
#+title: Clang-Format Settings
|
||||
Use a style similar to Linux kernel style (but with 4-wide indents and spaces over tabs).
|
||||
#+begin_src yaml :tangle ~/.clang-format
|
||||
BasedOnStyle: LLVM
|
||||
IndentWidth: 4
|
||||
BreakBeforeBraces: Linux
|
||||
AllowShortIfStatementsOnASingleLine: false
|
||||
IndentCaseLabels: false
|
||||
#+end_src
|
Loading…
Add table
Reference in a new issue