diff --git a/.bashrc b/.bashrc index b9b31c3..234f5e3 100644 --- a/.bashrc +++ b/.bashrc @@ -13,6 +13,13 @@ [[ $- != *i* ]] && return PS1='[\u@\h \W]\$ ' +# ----------------------------------------------------- +# SCREEN RESOLUTINS +# ----------------------------------------------------- +alias res1='xrandr --output DisplayPort-0 --mode 2560x1440 --rate 120' +alias res2='xrandr --output DisplayPort-0 --mode 1920x1080 --rate 120' + + # ----------------------------------------------------- # ALIASES # ----------------------------------------------------- diff --git a/README.md b/README.md index 8ef11fb..cbcdbc0 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,11 @@ Please also see the script folder how I setup my system. Included is a pywal configuration that changes the color scheme based on a randomly selected wallpaper. Just type w in a terminal (or SuperKey + Shift + w). SuperKey + Ctrl + w opens rofi with a list of installed wallpapers for individual selection. See also the .bashrc for more alias definitions. -## Screenshot +## Screenshots & Video -![Screenshots](screenshots/screenshot_20230406_2.png "Screenshot") +Click to watch on YouTube + +![Screenshots](screenshots/screenshot_play_button.png "Click to watch the video on YouTube") You can find more screenshots in the screenshots folder. diff --git a/screenshots/screenshot_play_button.png b/screenshots/screenshot_play_button.png new file mode 100644 index 0000000..e3b56ce Binary files /dev/null and b/screenshots/screenshot_play_button.png differ diff --git a/scripts/checkupdates.sh b/scripts/checkupdates.sh deleted file mode 100755 index d6ceeba..0000000 --- a/scripts/checkupdates.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# | | | |_ __ __| | __ _| |_ ___ ___ -# | | | | '_ \ / _` |/ _` | __/ _ \/ __| -# | |_| | |_) | (_| | (_| | || __/\__ \ -# \___/| .__/ \__,_|\__,_|\__\___||___/ -# |_| -# -# by Stephan Raabe (2023) -# ----------------------------------------------------- - -format() { - if [ "$1" -eq 0 ]; then - echo '-' - else - echo "$1" - fi -} - -if ! updates_arch="$(pacman -Qm >/dev/null | wc -l)"; then - updates_arch=0 -fi - -if ! updates_aur="$(yay -Qum 2>/dev/null | wc -l)"; then - updates_aur=0 -fi - -echo "($(format $updates_arch)/$(format $updates_aur))" diff --git a/scripts/cu.sh b/scripts/cu.sh deleted file mode 100755 index 602bbf5..0000000 --- a/scripts/cu.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash -# _ _ _ _ -# | | | |_ __ __| | __ _| |_ ___ ___ -# | | | | '_ \ / _` |/ _` | __/ _ \/ __| -# | |_| | |_) | (_| | (_| | || __/\__ \ -# \___/| .__/ \__,_|\__,_|\__\___||___/ -# |_| -# -# by Stephan Raabe (2023) -# ----------------------------------------------------- - -pacmanUpdates=$(pacman -Syup | grep http:// | wc -l) -aurUpdates=$(yaourt -Qua | grep aur | wc -l) - -if [ "$pacmanUpdates" -gt 0 ]; then - updateCount="$pacmanUpdates" -elif [ "$aurUpdates" -gt 0 ]; then - updateCount="A$aurUpdates" -else - updateCount=0 -fi - -echo "$updateCount" > /tmp/updateCount