Ajouter un lien:
4 results for tags tweak x

Windows Ium Tweaker - IumKit

Firefox : placer la barre personnelle verticalement

Pour trouver le dossier du profile, copiez ceci dans la barre d’adresse et ça vous donnera le chemin vers le dossier du profile : about:profiles. Allez dans ce dossier, puis allez dans le sous-dossier chrome (s’il ne s’y trouve pas, créez-le).

Créez ensuite un fichier userChrome.css (attention : c’est un fichier .css, il ne faut pas qu’il y ait le .txt à la fin).

Et copiez-y le code suivant :

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";);

/* ne garde plus que les icône, pas les étiquettes */
#personal-bookmarks .toolbarbutton-text {display:none!important}

#PersonalToolbar {
position: fixed!important;
/* own width of bookmark-bars */
right: 35px!important;
/* hight of url-bar + menu bar (top:0 corresponds of very top of firefox's interface) */
top: 100px!important;
height: 35px!important;
/* turns the personnalToolbar on its side (from top-right, 90° CCW */
transform-origin: top right!important;
transform: rotate(-90deg)!important;
padding: 0!important;
margin: 0!important;
}

#personal-bookmarks {
height: 100%!important;
width: 100%!important;
padding: 0!important;
margin: 0!important;
/* to have the icons in the previous listing order, rotate the list-of bookmarks 180° CW */
transform: rotate(180deg)!important;
transform-origin: 50% 50%!important;
}
#personal-bookmarks .bookmark-item {
/* Icons are on theire side due to the 90° + 180° rotation. Put them back with a rotation, 90° CCW */
transform: rotate(-90deg)!important;
height: 100%!important;
width: 25px!important;
}

/* this is to make room for the toolbar besides the browsing area of Firefox */
#browser,
#browser-bottombox {
   margin-right: 35px!important;
}

Increase your Linux server Internet speed with TCP BBR congestion control – nixCraft

Fixubuntu

#!/bin/bash

GS="/usr/bin/gsettings"
CCUL="com.canonical.Unity.lenses"

# Figure out the version of Ubuntu that you're running
V=$(/usr/bin/lsb_release -rs)
# The privacy problems started with v12.10, so earlier versions should do nothing

# Added check because 14.04.1 isn't a number
if [ $V == "14.04.1" ]; then
 $V=14.04
fi

# Minimum version check
MIN=`echo $V'>'12.10 | bc -l`

# Maximum version check
FIXED_VER=15.04
MAX=`echo $FIXED_VER'>'$V | bc -l`

if [[ $MIN -eq 0 || $MAX -eq 0 ]]; then
 echo "Good news! This version of Ubuntu is not known to invade your privacy."
 exit 0    # The script should exit if Ubuntu version is outside of range
fi

# Check if Canonical schema is present. Take first match, ignoring case.
SCHEMA="$($GS list-schemas | grep -i $CCUL | head -1)"
if [[ -z "$SCHEMA" ]]
 then
 printf "Error: could not find Canonical schema %s.\n" "$CCUL" 1>&2
 exit 1
else
 CCUL="$SCHEMA"
fi

# Turn off "Remote Search", so search terms in Dash aren't sent to the internet
$GS set "$CCUL" remote-content-search none

# If you're using a version earlier than v13.10, uninstall unity-lens-shopping
if [[ $V < 13.10 ]]; then
 sudo apt-get remove -y unity-lens-shopping

# If you're using a later version, disable remote scopes
else
 $GS set "$CCUL" disabled-scopes \
   "['more_suggestions-amazon.scope', 'more_suggestions-u1ms.scope',
   'more_suggestions-populartracks.scope', 'music-musicstore.scope',
   'more_suggestions-ebay.scope', 'more_suggestions-ubuntushop.scope',
   'more_suggestions-skimlinks.scope']"
fi;

# Block connections to Ubuntu's ad server, just in case
if ! grep -q "127.0.0.1 productsearch.ubuntu.com" /etc/hosts; then
 echo -e "\n127.0.0.1 productsearch.ubuntu.com" | sudo tee -a /etc/hosts >/dev/null
fi
# Editing /etc/hosts is OK, but adding an iptables rule seems to be
# a more elegant solution
sudo iptables -A OUTPUT -d 91.189.92.11 -j REJECT

echo "All done. Enjoy your privacy."