Vanilla Music Player.
Vanilla Music Player is an awesome music player for android. Check out the website or look it up on the Google Play. It’s now my go-to music player app on all my android devices....
Keni
One Nice Bug Per Day
h
Mike Driver

Origami Around
d e v o n
let's talk about Bridgerton tea, my ask is open
No title available
"I'm Dorothy Gale from Kansas"

Game Changer & Make Some Noise

Jar Jar Binks Fan Club
I'd rather be in outer space 🛸

@theartofmadeline
Fai_Ryy
ojovivo
🪼
occasionally subtle
Color Me Curious

if i look back, i am lost
RMH

seen from Singapore

seen from New Zealand
seen from Germany
seen from Brazil

seen from Philippines
seen from Brazil

seen from United States

seen from Türkiye

seen from Mexico
seen from Senegal
seen from United States

seen from United States
seen from Russia
seen from United Arab Emirates

seen from Australia
seen from Ukraine

seen from United States

seen from United Kingdom

seen from Germany

seen from Libya
@dtour001
Vanilla Music Player.
Vanilla Music Player is an awesome music player for android. Check out the website or look it up on the Google Play. It’s now my go-to music player app on all my android devices....
Fix wordpress permissions on ubuntu.
I've come to find that wordpress permissions can often be broken with a fresh install on Ubuntu. Thankfully Angel Alonso has made it super easy to fix. Simply open a terminal and wget his script from github, chmod it & then execute it. That’s the base of it, but see the three steps below....
wget https://gist.github.com/Adirael/3383404/raw/6c5446d56477426faeb709e5b807f00422acdea2/fix-wordpress-permissions.sh
chmod +x fix-wordpress-permissions.sh
sudo ./fix-wordpress-permissions.sh /var/www/html
Lipstick Left XFWM theme.
Lipstick left is a simple theme with only a left border. This theme is designed to be super minimal, space saving & out of the way....
Download the theme from GitHub or check out my post on r/unixporn. Here’s a dirty screenshot & the original clean screenshot....
Loading YouTube video’s full width & height of your browser.
YouTube can load videos and have them take up the full width & height of your browser. To make YouTube do this simply copy the video id from the url & paste it after youtube.com/embded/. For example....
STANDARD YOUTUBE VIDEO.
https://www.youtube.com/watch?v=R-WiwLZ6ZdM
FULL WIDTH & HEIGHT VIDEO.
https://www.youtube.com/embed/R-WiwLZ6ZdM
Styling multiple html links with css.
You can style multiple html links differently on the same page simply by adding a class to the link & then some css. For example....
HTML
<a href="something.html" class="newclass">Link text</a> <a href="somethingv1.html" class="anothernewclass">More link text</a>
CSS
a.newclass:link { color: #444444; text-decoration: none; }
a.newclass:visited { color: #444444; text-decoration: none; }
a.newclass:hover { color: #f2f2f2; text-decoration: none; }
a.newclass:active { color: #444444; text-decoration: none; }
a.anothernewclass:link { color: #f2f2f2; text-decoration: none; }
a.anothernewclass:visited { color: #f2f2f2; text-decoration: none; }
a.anothernewclass:hover { color: #222222; text-decoration: none; }
a.anothernewclass:active { color: #f2f2f2; text-decoration: none; }
Fullscreen background css.
Add the code below to the top of your .css file. Change the image name / location & everything's good to go....
html { Â background: url(image.jpg) no-repeat center center fixed; Â -webkit-background-size: cover; Â -moz-background-size: cover; Â -o-background-size: cover; Â background-size: cover; }
Turning off YouTube’s new mini player.
Some people dislike YouTube’s new mini player. If you happen to be one of those people, then you can easily turn it off....
Head over to your YouTube settings.
select "Playback and performance".
Uncheck "Enable Mini Player" & your done.
It’s super simple.
Lubuntu is taking a new direction.
Lubuntu is an operating system based on Ubuntu and for the most part has aimed itself towards user's with older hardware. With the transition to LXQt currently under way, the Lubuntu team have made the decision to take a new direction. You can read everything about this on their blog post....
This isn‘t I3....
This isn’t I3.. This is xfce with a no-border theme installed.
Here’s how to create your own no-border theme for xfce or possibly any other window manager. Just follow the steps below or download the theme from here GitHub....
sudo mkdir -p /usr/share/themes/empty/xfwm4
Replace "empty" with whatever name you want. This will be the name of your theme.
sudo touch /usr/share/themes/empty/xfwm4/themerc
Leave this file blank and your done.
Finished!!
Open up your window manager settings and choose your newly created theme.
Ubuntu 18.04.1 LTS has been released.
Ubuntu 18.04.1 LTS has been released. Offering up a bunch of updates & improvements over 18.04. It's now a good time to upgrade if you've been thinking about it. You can head over to the Ubuntu Fridge to read the official announcement & then to the wiki for the release notes....