Compare commits
No commits in common. "1502165618df2cc8385164098fe7fb106d23af46" and "7179c7d98f728a73448a66447042e691f87eea95" have entirely different histories.
1502165618
...
7179c7d98f
6 changed files with 0 additions and 64 deletions
|
@ -1,13 +0,0 @@
|
||||||
# Gathering the outdated packages list
|
|
||||||
echo "Gathering the outdated packages list..."
|
|
||||||
py_pkglist=$(pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d '=' -f 1)
|
|
||||||
|
|
||||||
# Updating
|
|
||||||
if [ ! -z "$py_pkglist" ]; then
|
|
||||||
echo $py_pkglist | xargs -n 1 pip3 install -U
|
|
||||||
else
|
|
||||||
echo "All packages are up to date."
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Unsetting the variable
|
|
||||||
unset py_pkglist
|
|
|
@ -1,14 +0,0 @@
|
||||||
if [[ -d ~/Git ]]; then
|
|
||||||
pushd "${HOME}/Git" > /dev/null
|
|
||||||
for repo in ./*; do
|
|
||||||
cd "$repo"
|
|
||||||
echo
|
|
||||||
basename "$repo"
|
|
||||||
git pull
|
|
||||||
cd ..
|
|
||||||
done
|
|
||||||
popd > /dev/null
|
|
||||||
else
|
|
||||||
>&2 echo "\"~/Git\" does not exist!"
|
|
||||||
fi
|
|
||||||
|
|
|
@ -1,8 +0,0 @@
|
||||||
# Moving to /tmp folder
|
|
||||||
#pushd /tmp > /dev/null
|
|
||||||
|
|
||||||
# Updating
|
|
||||||
sudo npm -g update
|
|
||||||
|
|
||||||
# Returning to previous directory
|
|
||||||
#popd > /dev/null
|
|
|
@ -1,11 +0,0 @@
|
||||||
# Gathering orphaned packages list
|
|
||||||
echo "Gathering orphaned packages list..."
|
|
||||||
orphaned_packages="$(pacman -Qtdq)"
|
|
||||||
|
|
||||||
if [[ ! -z $orphaned_packages ]]; then
|
|
||||||
echo "$orphaned_packages" | sudo pacman -Rns -
|
|
||||||
else
|
|
||||||
echo "No package to be removed."
|
|
||||||
fi
|
|
||||||
|
|
||||||
unset orphaned_packages
|
|
|
@ -1,2 +0,0 @@
|
||||||
# Updating
|
|
||||||
yay -Syu
|
|
16
winitrc-1
16
winitrc-1
|
@ -1,16 +0,0 @@
|
||||||
#!/bin/sh -xe
|
|
||||||
|
|
||||||
# cd to home
|
|
||||||
cd
|
|
||||||
|
|
||||||
# Add the Wayland version of Wine to the path
|
|
||||||
export PATH="/opt/wine-wl/usr/bin:$PATH"
|
|
||||||
|
|
||||||
# Set librewolf as default browser
|
|
||||||
export BROWSER=librewolf
|
|
||||||
|
|
||||||
# Execution
|
|
||||||
dbus-launch --exit-with-session \
|
|
||||||
ssh-agent \
|
|
||||||
/usr/bin/Hyprland
|
|
||||||
|
|
Loading…
Reference in a new issue