Update GPG Key for git
This commit is contained in:
parent
099dc946d3
commit
e8d52d0788
2 changed files with 17 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
[ActivityManager]
|
||||
_k_friendly_name=Activity Manager
|
||||
switch-to-activity-10eae782-cee3-42c7-b63f-6cfa29a432f4=none,none,Switch to activity "Default"
|
||||
switch-to-activity-c9029e69-ec79-4399-8d82-a2b36f65b1d5=none,none,Switch to activity "Default"
|
||||
|
||||
[KDE Keyboard Layout Switcher]
|
||||
|
@ -33,7 +34,7 @@ Halt Without Confirmation=none,,Shut Down Without Confirmation
|
|||
Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Lock Session
|
||||
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Show Logout Prompt
|
||||
Log Out Without Confirmation=none,,Log Out Without Confirmation
|
||||
LogOut=,,Log Out
|
||||
LogOut=none,,Log Out
|
||||
Reboot=none,,Reboot
|
||||
Reboot Without Confirmation=none,,Reboot Without Confirmation
|
||||
Shut Down=none,,Shut Down
|
||||
|
@ -45,6 +46,10 @@ Cycle Overview=none,none,Cycle through Overview and Grid View
|
|||
Cycle Overview Opposite=none,none,Cycle through Grid View and Overview
|
||||
Decrease Opacity=none,,Decrease Opacity of Active Window by 5%
|
||||
Edit Tiles=Meta+T,Meta+T,Toggle Tiles Editor
|
||||
Expose=Ctrl+F9,Ctrl+F9,Toggle Present Windows (Current desktop)
|
||||
ExposeAll=Ctrl+F10\tLaunch (C),Ctrl+F10\tLaunch (C),Toggle Present Windows (All desktops)
|
||||
ExposeClass=Ctrl+F7,Ctrl+F7,Toggle Present Windows (Window class)
|
||||
ExposeClassCurrentDesktop=none,none,Toggle Present Windows (Window class on current desktop)
|
||||
Grid View=Meta+G,Meta+G,Toggle Grid View
|
||||
Increase Opacity=none,,Increase Opacity of Active Window by 5%
|
||||
Kill Window=Meta+Ctrl+Esc,Meta+Ctrl+Esc,Kill Window
|
||||
|
@ -219,7 +224,7 @@ powerProfile=Battery\tMeta+B,Battery\tMeta+B,Switch Power Profile
|
|||
|
||||
[plasmashell]
|
||||
_k_friendly_name=plasmashell
|
||||
activate application launcher=Meta\t,Meta\tAlt+F1,Activate Application Launcher
|
||||
activate application launcher=Meta,Meta\tAlt+F1,Activate Application Launcher
|
||||
activate task manager entry 1=Meta+1,Meta+1,Activate Task Manager Entry 1
|
||||
activate task manager entry 10=none,Meta+0,Activate Task Manager Entry 10
|
||||
activate task manager entry 2=Meta+2,Meta+2,Activate Task Manager Entry 2
|
||||
|
|
20
.zshrc
20
.zshrc
|
@ -11,8 +11,9 @@ zinit light zdharma-continuum/fast-syntax-highlighting
|
|||
|
||||
# Oh My Posh
|
||||
#########################################################
|
||||
export PATH=$PATH:"$HOME/.local/bin"
|
||||
OMP_EXECUTABLE="${XDG_DATA_HOME:-${HOME}/.local}/bin/oh-my-posh"
|
||||
[ ! -f $OMP_EXECUTABLE ] && curl -s https://ohmyposh.dev/install.sh | zsh -s
|
||||
[ ! -f $OMP_EXECUTABLE ] && curl -s https://ohmyposh.dev/install.sh | bash -s
|
||||
eval "$(oh-my-posh init zsh --config ~/.config/omp.toml)"
|
||||
|
||||
# Basic ZSH
|
||||
|
@ -26,9 +27,16 @@ SAVEHIST=1000
|
|||
# Disable Bell
|
||||
unsetopt beep
|
||||
|
||||
# Git
|
||||
#########################################################
|
||||
case "$HOSTNAME" in
|
||||
snoweuph-desktop)key=31EDB2BA02AD438859B996654014606F050AEF63;;
|
||||
fedorabook-pro)key=CFB8E8CF1F0BA9FA2A1840CA0021ADF278B2F49B;;
|
||||
esac
|
||||
alias git="git -c user.signingKey='$key'"
|
||||
|
||||
# Application Envs
|
||||
#########################################################
|
||||
export PATH=$PATH:"$HOME/.local/bin"
|
||||
|
||||
# NPM
|
||||
export npm_config_cache="$HOME/.cache/npm"
|
||||
|
@ -49,14 +57,6 @@ export HSA_OVERRIDE_GFX_VERSION=10.3.0 # RX 6650 XT
|
|||
# Just
|
||||
export JUST_UNSTABLE=1
|
||||
|
||||
# Git
|
||||
#########################################################
|
||||
case "$HOSTNAME" in
|
||||
snoweuph-desktop)key=B06857C59C7DC672599657D3941D59944BDEB1B5;;
|
||||
fedorabook-pro)key=CFB8E8CF1F0BA9FA2A1840CA0021ADF278B2F49B;;
|
||||
esac
|
||||
alias git="git -c user.signingKey='$key'"
|
||||
|
||||
# Aliases
|
||||
#########################################################
|
||||
alias edit-nvim-conf="nvim ~/.config/nvim"
|
||||
|
|
Loading…
Reference in a new issue