Skip to content

Instantly share code, notes, and snippets.

.tooltipped[aria-label*="review approval"] {
background-color: green !important;
color: white !important;
padding-left: 5px;
padding-right: 5px;
padding-top: 3px;
padding-bottom: 3px;
border-radius: 5px;
}
.tooltipped[aria-label*="review approval"] {
background-color:green !important;
color: white !important;
padding-left: 5px;
padding-right: 5px;
padding-top: 3px;
padding-bottom: 3px;
border-radius: 5px;
}
@erenard
erenard / Microsoft.PowerShell_profile.ps1
Created August 22, 2019 09:07
Powershell configuration for chocolatey, git and npm
Import-Module posh-git
Import-Module TabExpansionPlusPlus
Import-Module NPMTabCompletion
# Set up a simple prompt, adding the git prompt parts inside git repos
function global:prompt {
$realLASTEXITCODE = $LASTEXITCODE
Write-Host($pwd.ProviderPath) -nonewline -ForegroundColor green
Write-VcsStatus
$global:LASTEXITCODE = $realLASTEXITCODE
@erenard
erenard / conky.conf
Last active March 30, 2018 17:22
linux conky configuration
conky.config = {
background = false,
update_interval = 1.5,
cpu_avg_samples = 2,
net_avg_samples = 2,
out_to_console = false,
override_utf8_locale = true,
double_buffer = true,
no_buffers = true,
text_buffer_size = 32768,