remove update buddy rogue files
parent
f00c78075d
commit
51b7bb6336
@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg viewBox="0 0 500 500" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle style="fill: rgb(255, 255, 255);" cx="746.481" cy="129.469" r="171.236" transform="matrix(1.397679, 0, 0, 1.394351, -793.340881, 69.474777)"/>
|
||||
<g transform="matrix(1, 0, 0, 1, 6.500237, 6.633018)">
|
||||
<path d="M 469.434 164.344 C 471.457 164.248 478.778 193.724 481.571 212.893 C 483.498 226.089 483.113 263.271 480.993 276.757 C 477.044 301.994 469.723 325.401 458.742 347.749 C 446.701 372.505 432.831 391.962 413.951 410.939 C 393.144 431.745 375.324 444.653 349.894 457.175 C 326.583 468.542 307.799 474.706 284.392 478.752 C 221.299 489.444 154.256 474.321 104.841 438.295 L 97.713 433.19 L 105.804 430.685 C 140.867 419.897 265.705 383.678 266.187 384.16 C 266.668 384.642 261.37 400.054 250.389 429.819 C 249.426 432.612 271.581 430.685 292.098 426.254 C 314.639 421.342 339.202 411.035 357.6 398.802 C 406.148 366.34 439.284 313.553 447.087 256.239 C 450.362 231.965 449.784 206.246 445.353 184.38 L 443.234 173.688 L 445.16 172.821 C 446.316 172.339 451.999 170.22 457.779 168.101 C 463.655 166.078 468.856 164.344 469.434 164.344 Z M 282.466 7.14 C 332.844 16.099 375.131 37.483 410.965 72.353 C 417.611 78.807 422.813 84.394 422.524 84.683 C 422.235 84.972 390.64 88.054 352.206 91.522 C 313.868 94.99 274.952 98.457 265.898 99.324 C 256.747 100.191 248.944 100.673 248.463 100.48 C 247.981 100.384 253.279 90.751 260.118 79.192 C 266.957 67.633 272.352 58 272.063 57.711 C 269.269 54.918 228.523 53.377 211.666 55.496 C 165.815 61.179 127.092 80.252 94.438 113.388 C 77.484 130.534 66.118 146.428 55.715 167.523 C 27.491 224.837 26.817 294.577 53.788 354.781 L 56.485 360.753 L 52.728 363.161 C 50.609 364.51 47.142 366.629 45.022 367.977 C 42.903 369.326 40.784 370.385 40.302 370.385 C 39.146 370.385 35.39 364.028 29.032 351.12 C 17.858 328.676 10.923 307.196 6.299 280.224 C 4.565 269.917 4.18 263.945 4.18 245.162 C 4.084 210.773 8.707 184.765 20.17 156.157 C 52.825 74.183 126.61 16.869 213.882 5.792 C 230.161 3.769 267.246 4.443 282.466 7.14 Z" style="fill: rgb(95, 99, 104);" transform="matrix(0.889678, 0.456589, -0.456589, 0.889678, 137.98209, -84.33052)"/>
|
||||
<g transform="matrix(0.045158, 0, 0, -0.045158, 127.896454, 337.779633)" fill="#000000" stroke="none" style="">
|
||||
<path d="M1650 4220 l0 -900 -600 0 c-330 0 -600 -3 -600 -8 0 -4 475 -482 1055 -1062 l1055 -1055 1055 1055 c580 580 1055 1058 1055 1062 0 5 -270 8 -600 8 l-600 0 0 900 0 900 -910 0 -910 0 0 -900z" style="fill: rgb(0, 115, 255);"/>
|
||||
<path d="M450 305 l0 -305 2110 0 2110 0 0 305 0 305 -2110 0 -2110 0 0 -305z" style="fill: rgb(0, 115, 255);"/>
|
||||
</g>
|
||||
<g transform="matrix(0.045158, 0, 0, -0.045158, 127.896454, 358.971344)" fill="#000000" stroke="none" style="">
|
||||
<path d="M 1650 4220 L 3470 4220 L 3470 6317.973 C 3098.819 6422.314 2707.324 6478.124 2302.793 6478.124 C 2080.872 6478.124 1862.873 6461.328 1650 6428.938 Z" style="fill: rgb(0, 115, 255);"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.9 KiB |
@ -1,22 +0,0 @@
|
||||
#!/bin/bash
|
||||
output="$(sudo apt update 2>&1)"
|
||||
exitcode=$?
|
||||
|
||||
#inform user packages are upgradeable
|
||||
if [ -z "$(echo "$output" | grep 'packages can be upgraded' )" ];then
|
||||
exit 0
|
||||
fi
|
||||
#only continue script if upgrades available
|
||||
|
||||
|
||||
LIST="$(apt list --upgradable 2>/dev/null | cut -d/ -f 1 | tail -n +2)"
|
||||
|
||||
echo -e "$LIST" | yad --center --title='Update Buddy' --width=310 --height=300 --no-headers \
|
||||
--list --separator='\n' --window-icon="${DIRECTORY}/icons/logo.png" \
|
||||
--text='These packages can be upgraded:' \
|
||||
--column=Package \
|
||||
--button='Cancel'!"${DIRECTORY}/icons/exit.png"!:1 \
|
||||
--button='Update now'!"${DIRECTORY}/icons/download.png":0 \
|
||||
2>/dev/null || exit 0
|
||||
|
||||
lxterminal --title='Upgrading packages' -e 'sudo apt -y full-upgrade;echo "Closing in 10 seconds.";sleep 10'
|
Loading…
Reference in New Issue