Segui il video qui sotto per vedere come installare il nostro sito come web app sulla tua schermata principale.
Nota: Questa funzionalità potrebbe non essere disponibile in alcuni browser.
Pubblicità
shell: copernicoQualcuno di voi che usa GNOME: temi più belli ?
shell: copernico
gtk+: arc (idem per firefox)
mouse: breeze cursor
icon: evopop o paper
+ estensione dynamic transparency bar per impostare la barra scura nel caso di wall tendenti al chiaro
così, per i miei gusti, gnome spacca!!!
TI AFFETTO, CON ODIO
TI AFFETTO, CON ODIO
gli accenti fanno la differenza XD
domanda veloce: in bash c'è il modo in un comando di sapere quante volte una stringa è contenuta in un'altra stringa?
sì per un file, vorrei un comando per una stringa. per il momento creo il file e bon però non è un modo molto pulito.
aahhh... mi spiace, cmq, non saprei. mi sa che devi aspettare qualcuno più powa di me... io son nabbo :(sì per un file, vorrei un comando per una stringa. per il momento creo il file e bon però non è un modo molto pulito.
/* Inverted */
xrandr --output VIRTUAL1 --off --output LVDS1 --primary --mode 1280x800 --pos 0x0 --rotate inverted --output TV1 --off --output VGA1 --off
/* Ruotato verso destra */
xrandr --output VIRTUAL1 --off --output LVDS1 --primary --mode 1280x800 --pos 0x0 --rotate right --output TV1 --off --output VGA1 --off
a="off"
echo $(xrandr) > file.txt
if [ $(grep -c left file.txt) = "2" ]
then
echo "rotazione-left" & a="on"
fi
if [ $(grep -c right file.txt) = "2" ]
then
echo "rotazione-right" & a="on"
fi
if [ $(grep -c inverted file.txt) = "2" ]
then
echo "rotazione-inverted" & a="on"
else
if [ a="off" ]
then
echo "rotazione-normal"
fi
fi
#!/bin/bash
echo $(xrandr) > file.txt
if [ $(grep -c left file.txt) = "2" ]
then
echo "rotazione-left"
else
if [ $(grep -c right file.txt) = "2" ]
then
echo "rotazione-right"
else
if [ $(grep -c inverted file.txt) = "2" ]
then
echo "rotazione-inverted"
else
echo "rotazione-normal"
fi
fi
fi
rm ~/file.txt