1
0
mirror of https://gitlab.com/linuxstuff/dotfiles.git synced 2026-06-19 04:06:00 +02:00

Added confd alias

This commit is contained in:
h45h74x
2020-05-06 22:25:41 +02:00
parent 494f9f5776
commit f1b3826374
6 changed files with 45 additions and 1 deletions
+2
View File
@@ -4,6 +4,8 @@
# General
exec_always --no-startup-id fix_xcursor
exec --no-startup-id "yadm pull"
exec --no-startup-id "yadm submodule update --recursive"
# display
exec --no-startup-id "nvidia-settings --load-config-only"
@@ -0,0 +1,14 @@
#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch
polybar main -r &
polybar second -r &
#insync
echo "Bar launched..."
@@ -0,0 +1,13 @@
#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch
polybar landscape -r &
#insync
echo "Bar launched..."
@@ -0,0 +1,14 @@
#!/usr/bin/env sh
# Terminate already running bar instances
killall -q polybar
# Wait until the processes have been shut down
while pgrep -x polybar >/dev/null; do sleep 1; done
# Launch
polybar portrait -r &
insync
echo "Bar launched..."
+1
View File
@@ -67,6 +67,7 @@ alias x=exit
alias fhistory="history | grep"
# yadm
alias confd="yadm pull; sleep 1; yadm submodule update --recursive"
alias confu="yadm commit -am"
alias confup="yadm push"
Submodule Userdata/Scripts updated: 64a1c8a003...b6424fad93