Skip to main content

· One min read
shiv

if you have ubuntu and your spotify keeps opening without a window or controls, this is a quick fix via your .bashrc file. enter the command on a terminal whenever spotify opens without a window.

~\.bashrc
# install wmctrl
sudo apt install wmctrl
# this is the wmctrl command to fix the windowed issue: `alias spotifix='wmctrl -r spotify -b toggle,fullscreen'`
# use the command below to append the above command to your bashrc
echo "alias spotifix='wmctrl -r spotify -b toggle,fullscreen'" >> ~/.bashrc
# source your bashrc, or restart your terminal
source ~/.bashrc

· One min read
shiv

Majestic Casual

From what I understand, Majestic Casual is a German indie electronic music label and are known for producing mellow, ethereal tracks. This playlist has music officially by the label, and also a bunch of adjacent sounds that fit the vibe.

· One min read
shiv

a few quick aliases I keep in my .bashrc to make life easier. these are from scratch after shifting computers, so I will update this constantly!

~\.bashrc
# list all files including authors, indicators for diff types of objects
alias ll='ls -alF'
# list all files except . and ..
alias la='ls -A'
# list all files by columns, indicators for diff types of objects
alias l='ls -CF'

# make it easy to directly copy and paste commands from online tutorials!
alias pip=pip3
alias python=python3

# using the cloc plugin: https://github.com/AlDanial/cloc
alias sloc='cloc $(git ls-files)'

· One min read
shiv

Hello, World! This is insane. I finally have a self hosted blog after almost a decade of saying I was going to make one. Excited to post more on here soon! I did have to back-date this post a little to make sure it showed up first, so don't worry about that...