Skip to content

Instantly share code, notes, and snippets.

View golimpio's full-sized avatar

Gilberto Olimpio golimpio

  • Beechworth VIC, Australia
  • 23:26 (UTC +10:00)
  • X @golimpio
View GitHub Profile
@golimpio
golimpio / eclipse-juno-gray.css
Created July 12, 2012 06:47
Eclipse Juno Gray Theme
@import url("e4_basestyle.css");
/*
References:
http://wiki.eclipse.org/E4/CSS/SWT_Mapping
https://github.com/eclipse-color-theme/eclipse-ui-themes/tree/master/com.github.eclipsecolortheme.themes
*/
.MTrimmedWindow {
margin-top: 3px;
@golimpio
golimpio / trello_rotate_transformation.css
Last active August 29, 2015 13:56
CSS rotate transformation on the ui-sortable-helper (Trello)
/* Trello just uses a CSS rotate transformation on the ui-sortable-helper */
.list-card.ui-sortable-helper {
transform: rotate(3deg);
-moz-transform: rotate(3deg);
-webkit-transform: rotate(3deg);
}
@golimpio
golimpio / create_desktop_app_google_chrome.sh
Last active February 12, 2024 20:27
A shell script to create application shortcuts in Google Chrome on a Mac
#!/bin/sh
#----------------------------------------------------------------------------------------------------------
#
# Original author: Bracken King
# https://www.lessannoyingcrm.com/blog/2010/08/149/create+application+shortcuts+in+google+chrome+on+a+mac
#
# Modified by: Gilberto R. Olimpio
#
# Changes:
@golimpio
golimpio / alfred_light_blue_theme
Last active August 29, 2015 13:57
Alfred Light Blue Theme
alfred://theme/searchForegroundColor=rgba(255,255,255,0.95)&resultSubtextFontSize=1&searchSelectionForegroundColor=rgba(0,0,0,1.00)&separatorColor=rgba(62,128,163,0.00)&resultSelectedBackgroundColor=rgba(193,48,61,0.90)&shortcutColor=rgba(255,255,255,0.75)&scrollbarColor=rgba(255,255,255,0.30)&imageStyle=9&resultSubtextFont=Helvetica&background=rgba(62,128,163,0.00)&shortcutFontSize=4&searchFontSize=4&resultSubtextColor=rgba(255,255,255,0.60)&searchBackgroundColor=rgba(140,155,153,0.00)&name=Giba%20Light%20Blue&resultTextFontSize=4&resultSelectedSubtextColor=rgba(255,255,255,0.88)&shortcutSelectedColor=rgba(255,255,255,0.85)&widthSize=4&border=rgba(62,128,163,0.90)&resultTextFont=Helvetica&resultTextColor=rgba(255,255,255,0.70)&cornerRoundness=3&searchFont=Helvetica&searchPaddingSize=4&credits=Gilberto%20Olimpio&searchSelectionBackgroundColor=rgba(3,209,235,1.00)&resultSelectedTextColor=rgba(255,255,255,0.85)&resultPaddingSize=2&shortcutFont=Helvetica
@golimpio
golimpio / evernote-clearly.css
Created March 8, 2014 05:13
Custom theme for Evernote Clearly
/**
* CSS theme for the Clearly browser extension by Evernote.
* See: www.evernote.com/clearly/
*
* Additional options used alongside this CSS:
* Body font: Source Sans Pro
* Header font: Source Sans Pro
* Monospace font: Liberation Mono for Powerline
* Background: #f5f5f5
* Foregound: #4a4444
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
treechildren::-moz-tree-row {
padding: 0 !important;
height: 1.65em !important;
outline: 0 !important
}
treechildren::-moz-tree-cell-text(unread) {
font-weight: bold!important;
@-moz-document url(chrome://conversations/content/stub.xhtml) {
body {
background-color: #f5f5f5 !important;
padding: 0 !important;
}
#messageList {
}
@golimpio
golimpio / recolor-numix-folders.sh
Created October 3, 2014 13:39
Replace folders' colours in svg files on gnome icon themes
#! /bin/bash
echo Replacing \#$1 by \#$2
find . -name *folder* -path *places* -type f -print0 | xargs -0 -n 1 sed -i -e 's/'$1'/'$2'/g'
find . -name *fileopen* -path *places* -type f -print0 | xargs -0 -n 1 sed -i -e 's/'$1'/'$2'/g'
find . -name *user-desktop* -path *places* -type f -print0 | xargs -0 -n 1 sed -i -e 's/'$1'/'$2'/g'
find . -name *user-home* -path *places* -type f -print0 | xargs -0 -n 1 sed -i -e 's/'$1'/'$2'/g'
find . -name *network* -path *places* -type f -print0 | xargs -0 -n 1 sed -i -e 's/'$1'/'$2'/g'
# e.g. run it from the root folder of the icon theme:
# recolor-numix-folders.sh f5c14e 63b6d1
@golimpio
golimpio / Oceanic Giba
Created February 1, 2015 04:06
Oceanic theme modification for a darker gutter background
{ gutterSettings = {
foreground = '#2B3640';
background = '#1C2731';
divider = '#1F2A34';
selectionBackground = '#95A3A63D';
selectionForeground = '#1D2832';
};
settings = (
{ settings = {
foreground = '#F8F8F2';
@golimpio
golimpio / meyerweb_css_reset.css
Created June 22, 2016 04:43
MeyerWeb's popular CSS reset
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,