mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-17 23:24:52 +00:00
Update
This commit is contained in:
parent
849d346b6f
commit
4be87f8a7c
3 changed files with 14 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ alias gpush='git push'
|
||||||
alias gpull='git pull'
|
alias gpull='git pull'
|
||||||
|
|
||||||
# Alias for git commit -m
|
# Alias for git commit -m
|
||||||
alias gcommit='git commit -m'
|
alias gcommit='git commit -S -m'
|
||||||
|
|
||||||
# Alias to kill Signal Private Messenger when crashed
|
# Alias to kill Signal Private Messenger when crashed
|
||||||
alias ksignal='killall -9 signal-desktop'
|
alias ksignal='killall -9 signal-desktop'
|
||||||
|
|
|
||||||
|
|
@ -112,10 +112,22 @@ alias l='ls -CF'
|
||||||
|
|
||||||
if [ -f ~/.bash_aliases ]; then
|
if [ -f ~/.bash_aliases ]; then
|
||||||
. ~/.bash_aliases
|
. ~/.bash_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f ~/.bash_private_aliases ]; then
|
||||||
. ~/.bash_private_aliases
|
. ~/.bash_private_aliases
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -f ~/.bash_functions ]; then
|
||||||
. ~/.bash_functions
|
. ~/.bash_functions
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# https://repo.cykerway.com/complete-alias
|
||||||
|
if [ -f /usr/share/bash-complete-alias/complete_alias ]; then
|
||||||
|
. /usr/share/bash-complete-alias/complete_alias
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
# enable programmable completion features (you don't need to enable
|
# enable programmable completion features (you don't need to enable
|
||||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||||
# sources /etc/bash.bashrc).
|
# sources /etc/bash.bashrc).
|
||||||
|
|
|
||||||
|
|
@ -5,5 +5,6 @@
|
||||||
--smooth-scrolling
|
--smooth-scrolling
|
||||||
--enable-gpu-rasterization
|
--enable-gpu-rasterization
|
||||||
--enable-zero-copy
|
--enable-zero-copy
|
||||||
|
--enable-accelerated-video-decode
|
||||||
--enable-features=LazyImageLoading,NativeNotifications,ParallelDownloading,WebUIDarkMode,ReadLater,VaapiVideoDecoder
|
--enable-features=LazyImageLoading,NativeNotifications,ParallelDownloading,WebUIDarkMode,ReadLater,VaapiVideoDecoder
|
||||||
--disable-features=HardwareMediaKeyHandling
|
--disable-features=HardwareMediaKeyHandling
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue