These are my various configs for Firefox.
- Sideberrry custom style
- TreeStyleTabs custom style
- userChrome style
Download latest Firefox Nightly build from here.
Once downloaded, extract to some location.
cd Downloads
sudo chown -R $USER:$USER /opt
tar -xvf firefox-xxx.tar.bz2 -C /opt
/* Hide the New Tab button */ | |
#newtab { | |
display: none; | |
} | |
/* Remove extra padding and margins from Search tabs field */ | |
#searchbox { | |
padding: 0px; | |
margin: -2px; | |
} |
<?php | |
/** | |
* Copyright 2011 Facebook, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); you may | |
* not use this file except in compliance with the License. You may obtain | |
* a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* |
#!/bin/bash | |
i3status | while : | |
do | |
read line | |
printf -v mpd_song "%q" "$(mpc current -f "[[%albumartist%|%artist% - ]%title%]")" | |
# printf -v sets the variable to '' in case of empty assignment | |
if [[ "$mpd_song" == "''" ]]; then | |
printf -v mpd_song "%q" "$(basename "$(mpc current -f "%file%")")" |
# Written: Ashhar Hasan (hashhar_dev at outlook dot com) on 13 April 2017 | |
_cache_file="${XDG_CACHE_HOME:=~/.cache}/aurvote/packages.gz" | |
# If cache file is older than a week or doesn't exist yet, update it. | |
_setup_cache() | |
{ | |
local last_update=1 | |
[ -e "${_cache_file}" ] && last_update=$(stat -c %Y "${_cache_file}") | |
# Compare the epoch times of existing file and current date. |
See also:Serenity (film) | |
"The Ballad of Serenity" (Theme song) written by Joss Whedon | |
Mal: We have done the impossible, and that makes us mighty. | |
-- Firefly (TV series) - None | |
% | |
Bendis: We're gonna die. | |
Mal: We're not gonna die. We can't die, Bendis. You know why? Because we are so... very... pretty. We are just too pretty for God to let us die. Huh? Look at that chiseled jaw! |
I hereby claim:
To claim this, I am signing this object:
Usage: VSIXInstaller.exe [/quiet] [/admin] [/skuName:name /skuVersion:version] </uninstall:vsixID | vsix_path> | |
- OPTIONS - | |
/quiet | |
Suppresses the UI. Short form is '/q'. | |
/admin | |
The extension will be installed to the admin extensions location. Short form is '/a'. |