conky, wmstartup.sh: Change Conky head, fix eternal wait in wmstartup
This commit is contained in:
parent
7482463203
commit
305d0df7c4
.config
@ -28,7 +28,7 @@ conky.config = {
|
|||||||
color9 = 'd3869b', -- Magenta (Memory)
|
color9 = 'd3869b', -- Magenta (Memory)
|
||||||
|
|
||||||
alignment = 'top_left',
|
alignment = 'top_left',
|
||||||
xinerama_head = 2,
|
xinerama_head = 0,
|
||||||
minimum_height = 4000,
|
minimum_height = 4000,
|
||||||
minimum_width = 300,
|
minimum_width = 300,
|
||||||
border_width = 6,
|
border_width = 6,
|
||||||
|
@ -65,10 +65,18 @@ for service in $services; do
|
|||||||
done
|
done
|
||||||
# Wait for them to die
|
# Wait for them to die
|
||||||
for service in $services; do
|
for service in $services; do
|
||||||
|
i=0
|
||||||
while pgrep $service > /dev/null 2>&1; do
|
while pgrep $service > /dev/null 2>&1; do
|
||||||
printf " [INFO] Waiting on $service\n"
|
if [[ "$i" = "10" ]]; then
|
||||||
sleep 0.5
|
printf " [INFO] Waited too long, killing $service with prejudice\n"
|
||||||
|
killall -9 $service
|
||||||
|
else
|
||||||
|
printf " [INFO] Waiting on $service\n"
|
||||||
|
sleep 0.5
|
||||||
|
i=$(expr i + 1)
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
unset i
|
||||||
done
|
done
|
||||||
|
|
||||||
# Start them back up
|
# Start them back up
|
||||||
|
@ -3,7 +3,7 @@ update_info=powerdevil_move_shortcuts.upd:powerdevil_move_shortcuts
|
|||||||
|
|
||||||
[KDE Keyboard Layout Switcher]
|
[KDE Keyboard Layout Switcher]
|
||||||
Switch to Next Keyboard Layout=Ctrl+Alt+K,none,Switch to Next Keyboard Layout
|
Switch to Next Keyboard Layout=Ctrl+Alt+K,none,Switch to Next Keyboard Layout
|
||||||
_k_friendly_name=System Settings
|
_k_friendly_name=KDE Daemon
|
||||||
|
|
||||||
[kaccess]
|
[kaccess]
|
||||||
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Toggle Screen Reader On and Off
|
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Toggle Screen Reader On and Off
|
||||||
|
Reference in New Issue
Block a user