Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/sets/basic/fish/aliases.fish
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ else if [ -f /etc/debian_version ]
alias get="sudo apt install"
alias search="apt search"
else if [ -f /etc/alpine-release ]
alias get="apk add"
alias search="apk search"
alias get="sudo apk add"
alias search="sudo apk search"
else if test (uname) = "FreeBSD"
alias get="sudo pkg install -y"
alias search="pkg search"
Expand Down
3 changes: 3 additions & 0 deletions config/sets/git/gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@
last = log -1 HEAD
unstage = reset HEAD --
amend = commit --amend --no-edit
[user]
email = pez@pez.sh
name = Rasmus Wejlgaard
5 changes: 4 additions & 1 deletion config/sets/kde/apply.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ if [ -n "${DISPLAY:-}" ] && command -v xset >/dev/null 2>&1; then
fi

# intent: caps-as-escape
# System Settings > Keyboard > Advanced > Caps Lock behavior.
# System Settings > Keyboard > Advanced > Caps Lock behavior. Options is
# ignored unless the "Configure keyboard options" checkbox (ResetOldOptions)
# is also enabled.
"$kwriteconfig" --file kxkbrc --group Layout --key Options "caps:escape"
"$kwriteconfig" --file kxkbrc --group Layout --key ResetOldOptions true

# intent: no-screen-lock
# System Settings > Screen Locking.
Expand Down
Loading