Fix issues
This commit is contained in:
parent
c3864bb510
commit
e448e719e8
4 changed files with 9 additions and 5 deletions
|
@ -1,5 +1,7 @@
|
||||||
#!/usr/bin/sh
|
#!/usr/bin/sh
|
||||||
|
|
||||||
|
sudo echo "Authenticated as root" || exit
|
||||||
|
|
||||||
paru -Syu --noconfirm
|
paru -Syu --noconfirm
|
||||||
|
|
||||||
if [ $? -eq 0 ]; then
|
if [ $? -eq 0 ]; then
|
||||||
|
@ -12,7 +14,7 @@ fi
|
||||||
|
|
||||||
echo "==================================================================="
|
echo "==================================================================="
|
||||||
|
|
||||||
sudo pacman -Rns $(pacman -Qtdq)
|
sudo pacman -Rns --noconfirm $(pacman -Qtdq)
|
||||||
|
|
||||||
sudo checkservices
|
sudo checkservices
|
||||||
|
|
||||||
|
|
|
@ -109,6 +109,7 @@ bspc rule -a 'Steam' desktop='side-view'
|
||||||
bspc rule -a 'Evolution' desktop='messenger'
|
bspc rule -a 'Evolution' desktop='messenger'
|
||||||
bspc rule -a 'Signal' desktop='messenger'
|
bspc rule -a 'Signal' desktop='messenger'
|
||||||
bspc rule -a 'Thunderbird:Mail' desktop='messenger' locked='true'
|
bspc rule -a 'Thunderbird:Mail' desktop='messenger' locked='true'
|
||||||
|
bspc rule -a 'thunderbird' desktop='messenger' locked='true'
|
||||||
|
|
||||||
|
|
||||||
"$HOME/.config/polybar/launch.sh" &
|
"$HOME/.config/polybar/launch.sh" &
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
trustExitCode = true
|
trustExitCode = true
|
||||||
[alias]
|
[alias]
|
||||||
b = branch -vv
|
b = branch -vv
|
||||||
ci = commit -v
|
ci = commit
|
||||||
cia = commit -v --amend
|
cia = commit --amend
|
||||||
d = diff
|
d = diff
|
||||||
dc = diff --cached
|
dc = diff --cached
|
||||||
ds = diff --stat
|
ds = diff --stat
|
||||||
|
@ -57,3 +57,4 @@
|
||||||
defaultBranch = main
|
defaultBranch = main
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = true
|
||||||
|
verbose = true
|
||||||
|
|
4
.profile
4
.profile
|
@ -1,2 +1,2 @@
|
||||||
source /etc/profile
|
. /etc/profile
|
||||||
source $HOME/.config/environment
|
. $HOME/.config/environment
|
||||||
|
|
Loading…
Reference in a new issue