Some ergonomic changes
This commit is contained in:
parent
098bb793ff
commit
c01e8b69a6
2 changed files with 24 additions and 6 deletions
18
bashrc
18
bashrc
|
@ -119,6 +119,7 @@ alias shm='cd /dev/shm'
|
||||||
alias ip6='ip -6'
|
alias ip6='ip -6'
|
||||||
alias disk-usage-analyser='baobab'
|
alias disk-usage-analyser='baobab'
|
||||||
alias op='xdg-open'
|
alias op='xdg-open'
|
||||||
|
alias o='octave'
|
||||||
alias cdu='cdu -idh'
|
alias cdu='cdu -idh'
|
||||||
alias dus='du -sh * | sort -h'
|
alias dus='du -sh * | sort -h'
|
||||||
|
|
||||||
|
@ -207,6 +208,23 @@ extract()
|
||||||
return $e
|
return $e
|
||||||
}
|
}
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
|
|
||||||
|
## FIXME TO IMPROVE WITH VARIOUS locations (ex: ro 1; ro 2; ro 3)
|
||||||
|
ro()
|
||||||
|
{ # {{{
|
||||||
|
if [ -n "$my_root_set" ]; then
|
||||||
|
cd $my_root_set;
|
||||||
|
else
|
||||||
|
echo "root not set ! set it with roset !";
|
||||||
|
fi;
|
||||||
|
} # }}}
|
||||||
|
|
||||||
|
roset()
|
||||||
|
{ # {{{
|
||||||
|
my_root_set="`pwd`";
|
||||||
|
} # }}}
|
||||||
|
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
SSHAGENT=/usr/bin/ssh-agent
|
SSHAGENT=/usr/bin/ssh-agent
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<html>
|
<html>
|
||||||
<!-- vim: set ts=4 sw=4 noet: -->
|
<!-- vim: set ts=4 sw=4 noet: -->
|
||||||
<head>
|
<head>
|
||||||
<title><+TITLE+></title>
|
<title><+TITLE+></title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||||
<meta name="description" content="<+DESCRIPTION+>" />
|
<meta name="description" content="<+DESCRIPTION+>" />
|
||||||
<meta name="keywords" content="<+KEYWORDS+>" />
|
<meta name="keywords" content="<+KEYWORDS+>" />
|
||||||
<link rel="stylesheet" media="screen" type="text/css" href="./style/design.css" />
|
<link rel="stylesheet" media="screen" type="text/css" href="./style/design.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<+CODE+>
|
<+CODE+>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue