Compare commits
6 Commits
bab8f8b6dd
...
master
Author | SHA1 | Date | |
---|---|---|---|
c22dcc6274 | |||
ffc9f09c0f | |||
4f19441ab1 | |||
41e91b72af | |||
3c3a3b18ea | |||
966b49204d |
@ -250,26 +250,11 @@ alias amend_perso="GIT_EDITOR=true git rebase --rebase-merges --exec 'git commit
|
||||
# ╠╦╝├┤ ├─┘│ │└─┐│ │ │ │├┬┘│├┤ └─┐
|
||||
# ╩╚═└─┘┴ └─┘└─┘┴ ┴ └─┘┴└─┴└─┘└─┘
|
||||
|
||||
alias bc='cd $HOME/Netatmo/embedded/firmware-bitcloud'
|
||||
alias fw='cd $HOME/Netatmo/embedded/firmware'
|
||||
alias nmr='cd $HOME/Netatmo/embedded/nmr'
|
||||
alias py='cd $HOME/Netatmo/core/python-emb-tools'
|
||||
alias mag='cd $HOME/Netatmo/embedded/magellan'
|
||||
alias nsp='cd $HOME/Netatmo/embedded/nsp'
|
||||
alias nas='cd $HOME/Netatmo/embedded/nas'
|
||||
alias npc='cd $HOME/Netatmo/embedded/npc'
|
||||
alias mulot='cd $HOME/mulot/firmware'
|
||||
alias mulot='cd $HOME/mulot'
|
||||
alias moki='cd $HOME/mulot/moki'
|
||||
|
||||
# In editor
|
||||
alias c_bc='c $HOME/Netatmo/firmware-bitcloud.code-workspace'
|
||||
alias c_fw='c $HOME/Netatmo/firmware.code-workspace'
|
||||
alias c_nmr='c $HOME/Netatmo/nmr.code-workspace'
|
||||
alias c_py='c $HOME/Netatmo/python-emb-tools.code-workspace'
|
||||
alias c_mag='c $HOME/Netatmo/magellan.code-workspace'
|
||||
alias c_nsp='c $HOME/Netatmo/nsp.code-workspace'
|
||||
alias c_nas='c $HOME/Netatmo/nas.code-workspace'
|
||||
alias c_npc='c $HOME/Netatmo/npc.code-workspace'
|
||||
alias c_mulot='c $HOME/mulot/mulot.code-workspace'
|
||||
alias c_moki='c $HOME/mulot/moki.code-workspace'
|
||||
|
||||
# SSH keygen
|
||||
function ssh_keygen {
|
||||
@ -332,18 +317,9 @@ fi
|
||||
# ║╣ ┌┴┬┘├─┘│ │├┬┘ │
|
||||
# ╚═╝┴ └─┴ └─┘┴└─ ┴
|
||||
|
||||
export PATH=$PATH:~/Netatmo/core/embedded-tools/Linux/flasher
|
||||
export PATH=$PATH:~/Netatmo/core/generic-embedded/stm32_sbm
|
||||
export PATH=$PATH:~/Netatmo/core/generic-embedded/stm32_dfu
|
||||
export PATH=$PATH:~/Netatmo/embedded/firmware-bitcloud/toolchain/arm-none-eabi/bin
|
||||
export PATH=$PATH:~/Netatmo/embedded/nmr/scripts/flash
|
||||
|
||||
# Autofixup
|
||||
export PATH=$PATH:$HOME/.git-autofixup
|
||||
|
||||
# Netatmo
|
||||
export NETATMO_WORK_DIR=$HOME/Netatmo
|
||||
|
||||
# Cargo binaries (navi)
|
||||
export PATH=$PATH:$HOME/.cargo/bin
|
||||
|
||||
|
@ -61,12 +61,6 @@ cargo install navi
|
||||
mkdir -p $HOME/.local/share/navi/cheats
|
||||
ln -sfn $HOME/.dotfiles/navi/ $HOME/.local/share/navi/cheats/vulporuza
|
||||
|
||||
# Update pip
|
||||
pip3 install --upgrade pip
|
||||
|
||||
# Install undervolt
|
||||
sudo pip3 install undervolt
|
||||
|
||||
# Update npm
|
||||
sudo npm install -g npm
|
||||
|
||||
|
@ -7,13 +7,6 @@ fi
|
||||
# CLI Tools
|
||||
$HOME/.dotfiles/auto-config-cli.sh
|
||||
|
||||
# Codium
|
||||
if [ ! -f "/etc/apt/sources.list.d/vscodium.list" ]
|
||||
then
|
||||
wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | gpg --dearmor | sudo dd of=/etc/apt/trusted.gpg.d/vscodium-archive-keyring.gpg
|
||||
echo 'deb [signed-by=/etc/apt/trusted.gpg.d/vscodium-archive-keyring.gpg] https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/debs/ vscodium main' | sudo tee /etc/apt/sources.list.d/vscodium.list
|
||||
fi
|
||||
|
||||
sudo apt install terminator fonts-firacode
|
||||
|
||||
mkdir -p $HOME/.config/Code/User/
|
||||
|
@ -17,7 +17,7 @@
|
||||
},
|
||||
"C_Cpp.formatting": "Disabled",
|
||||
"C_Cpp.updateChannel": "Default",
|
||||
"powermode.enabled": true,
|
||||
"powermode.enabled": false,
|
||||
"powermode.enableExplosions": true,
|
||||
"powermode.maxExplosions": 1,
|
||||
"editor.rulers": [
|
||||
|
@ -1,21 +1,21 @@
|
||||
% docker-compose
|
||||
|
||||
# Up a compose YAML
|
||||
sudo docker-compose -f <file> up
|
||||
sudo docker compose -f <file> up
|
||||
|
||||
# Up and daemonze a compose YAML
|
||||
sudo docker-compose -f <file> up -d
|
||||
sudo docker compose -f <file> up -d
|
||||
|
||||
# Up and daemonze a compose YAML (force)
|
||||
sudo docker-compose -f <file> up -d --force-recreate
|
||||
sudo docker compose -f <file> up -d --force-recreate
|
||||
|
||||
# Up and daemonze a compose YAML
|
||||
sudo docker-compose -f <file> down
|
||||
# Down a compose YAML
|
||||
sudo docker compose -f <file> down
|
||||
|
||||
# Print the last lines of compose YAML logs
|
||||
sudo docker-compose -f <file> logs --tail 100
|
||||
sudo docker compose -f <file> logs --tail 100
|
||||
|
||||
# Print the last lines of compose YAML logs and following its logs
|
||||
sudo docker-compose -f <file> logs --tail 100 -f
|
||||
sudo docker compose -f <file> logs --tail 100 -f
|
||||
|
||||
$ file: ls *.yaml | awk '{print $1}'
|
||||
|
@ -1,18 +1,14 @@
|
||||
[global_config]
|
||||
window_state = maximise
|
||||
scroll_tabbar = True
|
||||
title_inactive_bg_color = "#000000"
|
||||
inactive_color_offset = 1.0
|
||||
enabled_plugins = TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, LaunchpadBugURLHandler
|
||||
suppress_multiple_term_dialog = True
|
||||
title_use_system_font = False
|
||||
title_font = Fira Code weight=453 11
|
||||
[keybindings]
|
||||
[profiles]
|
||||
[[default]]
|
||||
background_darkness = 0.7
|
||||
background_type = transparent
|
||||
cursor_color = "#908c8c"
|
||||
font = Fira Code weight=453 11
|
||||
foreground_color = "#ffffff"
|
||||
scrollback_infinite = True
|
||||
|
Reference in New Issue
Block a user