Pop shell and gnome lock screen

I uninstalled pop shell from gnome and now the lock screen animation won’t play anymore, how would I fix this?

Are you using Pop_Os or Endeavour OS?

https://www.reddit.com/r/pop_os/comments/gddtk1/removingdisabeling_the_popshell_extension_in_pop/?rdt=41499

This is something considering this with quick googling.

I am using endeavoros, I manually installed pop shell. I also want to completely remove it, not just disable it

@akarii ,
yay pop-shell | grep Installed
will show you the exact package name (gnome-shell-extension-pop-shell-git)
yay -Rns gnome-shell-extension-pop-shell-git
uninstalls it and the dependencies.
btw Super+Esc is the shortcut for screen lock. It’s easy to modify to Super+L in
gnome-control-center / Keyboard / Keyboard Shortcuts / System

thanks, and I also did rebind screen lock

Might you know how to bind toggling the touchpad and power profiles through gnome?

Let’s make a script tt.sh

#!/bin/bash
# This shell script is PUBLIC DOMAIN. You may do whatever you want with it.

TOGGLE=$HOME/.toggle

if [ ! -e $TOGGLE ]; then
    touch $TOGGLE
    gsettings set org.gnome.desktop.peripherals.touchpad send-events disabled
else
    rm $TOGGLE
    gsettings set org.gnome.desktop.peripherals.touchpad send-events enabled
fi

Add a custom shortcut e.g ALT+X and call /home/akarii/tt.sh Do not forget to make it executable
chmod +x tt.sh

The topic is closing…
powerprofilesctl get

powerprofilesctl set power-saver
powerprofilesctl set balanced
powerprofilesctl set performance

@akarii and something you can polish further
cat sp.sh

#!/bin/bash
PROFILE=$(powerprofilesctl get)
yad --title="$PROFILE" --completion \
    --entry="Name:" "" \
    "1-power-saver" "2-balanced" "3-performance"  | \
while read line; do
  ENTRY=`echo $line | awk -F',' '{print $1}'`
#  echo $ENTRY

case $ENTRY in
    1-power-saver )
        powerprofilesctl set power-saver ;;
    2-balanced )
        powerprofilesctl set balanced ;;
    3-performance )
        powerprofilesctl set performance ;;
esac
done
1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.