Skip to content

Instantly share code, notes, and snippets.

View paulcarroty's full-sized avatar

Pavlo Rudy paulcarroty

View GitHub Profile
@paulcarroty
paulcarroty / clean_bad_filenames.sh
Created May 21, 2020 16:42
clean bad filenames
#!/bin/bash
# find them all
ls destination | egrep '\[' >> to_rename
# cut [*]
while read line; do echo $line | sed -e 's/\[[^][]*\] //g' ; done < /tmp/to_rename
@paulcarroty
paulcarroty / gist:d194c55843363ea5520c73148abefaf1
Last active March 22, 2018 14:08
VNC-Fedora-Chromium-no-X
setenforce 0
dnf -y install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
dnf -y install tigervnc-server xterm chromium chromium-libs-media-freeworld
vncpasswd <- set your pass
touch ~/.vnc/xstartup
echo "#!/bin/sh" >> ~/.vnc/xstartup
echo "unset SESSION_MANAGER' >> ~/.vnc/xstartup
echo "unset DBUS_SESSION_BUS_ADDRESS" >> ~/.vnc/xstartup