Browse Source

[TASK] clean up

master
Dor dicke Gind 2 years ago
parent
commit
b5026ba7a5
  1. BIN
      .local/share/gvfs-metadata/home
  2. BIN
      .local/share/gvfs-metadata/home-01823a4b.log
  3. BIN
      .local/share/gvfs-metadata/home-428515bb.log
  4. BIN
      .local/share/gvfs-metadata/root
  5. BIN
      .local/share/gvfs-metadata/root-00668cf7.log
  6. BIN
      .local/share/gvfs-metadata/uuid-AF1D-82E1
  7. BIN
      .local/share/gvfs-metadata/uuid-AF1D-82E1-23d7a210.log
  8. BIN
      Bilder/Icons/Games/rc.png
  9. 3
      Scripts/Games/rcracers.sh
  10. 6
      Scripts/mount-btrfs-drives-after-boot.sh
  11. 38
      Scripts/mprisctl.sh

BIN
.local/share/gvfs-metadata/home

Binary file not shown.

BIN
.local/share/gvfs-metadata/home-01823a4b.log

Binary file not shown.

BIN
.local/share/gvfs-metadata/home-428515bb.log

Binary file not shown.

BIN
.local/share/gvfs-metadata/root

Binary file not shown.

BIN
.local/share/gvfs-metadata/root-00668cf7.log

Binary file not shown.

BIN
.local/share/gvfs-metadata/uuid-AF1D-82E1

Binary file not shown.

BIN
.local/share/gvfs-metadata/uuid-AF1D-82E1-23d7a210.log

Binary file not shown.

BIN
Bilder/Icons/Games/rc.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 KiB

3
Scripts/Games/rcracers.sh

@ -1,3 +0,0 @@
export WINEPREFIX=~/.wine_32
cd ~/Games/RC\ Racers\ Deluxe\ TE/
gamescope -f -w 1920 -h 1080 -- /opt/wine-staging-opt-3.21/bin/wine explorer /desktop=name,1920x1080 RCRacers.exe

6
Scripts/mount-btrfs-drives-after-boot.sh

@ -1,6 +0,0 @@
mount /dev/sda1
mount /dev/sda2
mount /dev/sdb1
mount 192.168.178.26:/mnt/usb
mount 192.168.178.26:/mnt/usb2
mount 192.168.178.26:/mnt/usb-ssd

38
Scripts/mprisctl.sh

@ -1,38 +0,0 @@
#!/bin/sh
case "$1" in
play-pause )
func=PlayPause
;;
next )
func=Next
;;
previous )
func=Previous
;;
play )
func=Play
;;
pause )
func=Pause
;;
stop )
func=Stop
;;
* )
exit 3
esac
# get first mpris interface
bus=$(dbus-send --session \
--dest=org.freedesktop.DBus \
--type=method_call \
--print-reply=literal \
/org/freedesktop/DBus \
org.freedesktop.DBus.ListNames |
tr ' ' '\n' |
grep 'org.mpris.MediaPlayer2' |
head -n 1)
dbus-send --type=method_call --dest=org.mpris.MediaPlayer2.Lollypop /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.$func
#echo dbus-send --type=method_call --dest=$bus /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.$func
Loading…
Cancel
Save