Updates Work laptop

This commit is contained in:
Michel Fedde 2025-04-24 11:27:59 +02:00
parent fb8b1d7951
commit 7057d68410
6 changed files with 19 additions and 2 deletions

View file

@ -1,4 +1,4 @@
exec-once = gtk-launch teams-nativefier.desktop &
exec-once = gtk-launch microsoft-edge.desktop &
exec-once = gtk-launch zen.desktop &
exec-once = $HOME/.config/evremap/orchestrator &> $HOME/.log/evremap-orchestrator.log

View file

@ -37,7 +37,7 @@ device {
}
device {
name = evremap-virtual-input-for-/dev/input/event17
name = evremap-virtual-input-for-/dev/input/event30
kb_layout = us
kb_variant = altgr-intl
}

View file

@ -17,3 +17,5 @@ alias note-dsa='(cd ~/DSA/ && ENABLE_GIT_SETUP=true nvim ~/DSA/)'
alias note-dsa-players='(cd ~/DSA/Spieler/ && ENABLE_GIT_SETUP=true nvim ~/DSA/Spieler/)'
eval "$(zoxide init bash --cmd cd)"
source "$HOME/.config/terminal/alias.sh"

View file

@ -0,0 +1,13 @@
#!/bin/env sh
# eve helper
function eve() {
local eveVMPath="${HOME}/vagrant"
if [ "${*}" = "ssh" ]; then
local status=$(cd $eveVMPath && vagrant status)
if [[ ! "$status" == *"The VM is running."* ]]; then
( cd $eveVMPath && vagrant up )
fi
fi
( cd $eveVMPath && vagrant $* )
}

View file

2
.gitignore vendored
View file

@ -34,6 +34,7 @@
/.config/hyprswitch/style.css.map
!/.config/wal/
!/.config/zathura/
!/.config/terminal/
!/.ssh/
/.ssh/*
@ -70,3 +71,4 @@
.config/yadm/bootstrap.v2/applications/10-SDDM.sh
.config/yadm/bootstrap.v2/applications/30-GitUserConfig.sh
.config/yadm/bootstrap.v2/applications/40-GitRepositories.sh
.config/terminal/alias.sh