Category Archives: Software

Software

Terminator

My terminator config:

# ~/.config/terminator/config
## Colors
use_theme_colors = False
enable_real_transparency = True
background_color = "#000000"
foreground_color = "#FFFFFF"
background_darkness = 0.8
background_type = "transparent"
# The following palette value should not be split,
# but was done so to make it fit on this post.
palette = '#2E3436:#CC0000:#B1C1A3:#C4A000:#4F97F3: \
#75507B:#06989A:#D3D7CF:#555753:#EF2929:#8AE234: \
#FCE94F:#729FCF:#AD7FA8:#34E2E2:#EEEEEC'
# Text
font = "Mono 8"
cursor_blink = True
# Misc
scrollback_lines = 100000
force_no_bell = True
titlebars = True
scroll_on_output = False
focus = sloppy
borderless = False
# end of config

Hasta la vista, baby.

flac2aac

Last week, I wanted to quickly convert part of my music collection (which has entirely and painstakingly been ripped into FLAC files) into AAC format so I could play it on my 2nd generation iPod Nano (which unfortunately isn’t supported by Rockbox yet). I couldn’t quickly find a tool that would do the job while preserving the track tags, so I quickly made a script to do it myself.

Since there is probably a need for something like this, I decided to add a bit of spit and polish to it and release it here under the GPL. I’ve named the script flac2aac, and it can be downloaded here. Hope this benefits somebody.