Improve configs
This commit is contained in:
parent
d0bbb66934
commit
40ca0e9ae4
6 changed files with 20 additions and 16 deletions
|
@ -24,3 +24,7 @@ else
|
|||
echo "CHECKSERVICES FAILED"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo ""
|
||||
|
||||
flatpack update -y
|
||||
|
|
|
@ -1,17 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
action=$(echo -e "Shutdown\nReboot\nLogout" | $MENU)
|
||||
action=$(printf "shutdown\nreboot\nlogout\nautostart" | $MENU)
|
||||
|
||||
case "$action" in
|
||||
"Shutdown")
|
||||
systemctl poweroff -i
|
||||
;;
|
||||
"Reboot")
|
||||
systemctl reboot
|
||||
;;
|
||||
"Logout")
|
||||
systemctl --user exit
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
shutdown) systemctl poweroff -i ;;
|
||||
reboot) systemctl reboot ;;
|
||||
logout) systemctl --user exit ;;
|
||||
autostart) autostart-manage start ;;
|
||||
*) ;; esac
|
||||
|
|
|
@ -48,7 +48,10 @@ export OPENFAAS_URL="https://faas.serguzim.me"
|
|||
export OSH="$XDG_CONFIG_HOME/bash/oh-my-bash"
|
||||
|
||||
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
||||
export PATH="$HOME/.local/bin:$GOPATH/bin:$HOME/.cargo/bin:$HOME/.bin:$HOME/.local/share/JetBrains/Toolbox/scripts:$PATH"
|
||||
# add my paths
|
||||
export PATH="$HOME/.local/bin:$HOME/.bin:$PATH"
|
||||
# add tool paths
|
||||
export PATH="$GOPATH/bin:$HOME/.cargo/bin:$HOME/.local/share/JetBrains/Toolbox/scripts:$PATH"
|
||||
export PS1='\$ '
|
||||
|
||||
export QT_QPA_PLATFORM="wayland;xcb"
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
ff = only
|
||||
[push]
|
||||
followTags = true
|
||||
autoSetupRemote = true
|
||||
[format]
|
||||
signOff = yes
|
||||
[filter "lfs"]
|
||||
|
|
|
@ -18,6 +18,9 @@ super + p
|
|||
super + Escape
|
||||
pkill -USR1 -x sxhkd
|
||||
|
||||
Print
|
||||
flameshot full
|
||||
|
||||
super + Print
|
||||
screenshot
|
||||
super + ctrl + Print
|
||||
|
@ -54,7 +57,7 @@ XF86MonBrightnessDown
|
|||
backlight -dec 5
|
||||
|
||||
super + v
|
||||
flatpak run io.freetubeapp.FreeTube "$(xclip -o -selection clipboard)"
|
||||
io.freetubeapp.FreeTube "$(xclip -o -selection clipboard)"
|
||||
super + shift + v
|
||||
mpv $(xclip -o -selection clipboard); notify-send "mpv media playback finished"
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ ZSH_THEME="serguzim"
|
|||
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
|
||||
|
||||
# Uncomment the following line to use case-sensitive completion.
|
||||
# CASE_SENSITIVE="true"
|
||||
CASE_SENSITIVE="true" # zsh 5.9 regression about adjacent letters. This is a workaround.
|
||||
|
||||
# Uncomment the following line to use hyphen-insensitive completion.
|
||||
# Case-sensitive completion must be off. _ and - will be interchangeable.
|
||||
|
|
Loading…
Reference in a new issue