如果你将 Firefox 的起始页设置为 about:startpage (或http://start.ubuntu.com)你会得到这个:
如果你使用http://start.ubuntu.com/current/Yahoo/你会得到这个:
Ubuntu 开始页中可以使用其他搜索引擎吗?我特别感兴趣的是DuckDuckGo.com。
答案1
以前有一个“主页”选项,但他们重新安排了首选项配置,现在它被埋在某个地方。
在 url 字段中输入about:config
,找到设置browser.startup.homepage
并将其值设置为https://duckduckgo.com/
。您将直接使用搜索引擎,而无需通过 ubuntu 服务器进行搜索。
答案2
您可以下载我刚刚为您编写的页面 HTML 并将其设置为离线起始页:
将以下代码复制粘贴到您将命名为“的文本文件中起始页.htm“ :
<!DOCTYPE html>
<html dir="ltr" lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Ubuntu Start Page</title>
<style type="text/css">
body {
background: white;
font-family: ubuntu, ubuntubeta, 'Bitstream Vera Sans', 'DejaVu Sans', Tahoma, sans-serif;
font-size: 12px;
line-height: 14px;
margin: 0 auto;
}
button::-moz-focus-inner {
/* fix buttons in FF */
border: 0;
padding: 0;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Remove button margin in webkit */
button{
margin: 0;
}
}
.search-box {
width: 595px;
margin: 0 auto;
margin-top: 63px;
}
.ubuntu-branding {
background: url(http://start.ubuntu.com/12.04/sprite.png) no-repeat;
background-position: 0 -251px;
background-color: #aea79f;
height: 40px;
border-radius: 5px 5px 0 0;
}
.wrapper {
padding: 0;
border: 1px solid #eee;
border-top: 0;
border-radius: 0 0 5px 5px;
margin: 0 auto;
text-align: center;
}
.wrapper h1 {
margin: 0;
padding: 0;
}
.logo a {
font-size: 1px;
display: block;
text-indent: -9999px;
background: url(http://start.ubuntu.com/12.04/sprite.png) no-repeat;
background-position: -10px -95px;
margin: 0;
padding: 0;
height: 18px;
width: 167px;
margin-bottom: 15px;
position: relative;
}
.wrapper input {
/* allows styling in webkit */
-webkit-appearance: textfield;
display: inline-block;
vertical-align: top;
width: 384px;
height: 32px;
font-size: 18px;
padding-left: 5px;
padding-right: 5px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #AEA79F;
}
.inner {
display: inline-block;
margin: 65px auto 100px auto;
}
.inner form {
height: 32px;
}
.external-links {
text-align: center;
padding-top: 20px;
padding-left: 10px;
padding-right: 10px;
}
.external-links li {
height: 30px;
display: inline-block;
text-align: left;
padding-top: 8px;
margin: 0 10px;
}
.external-links a {
text-decoration: none;
color: gray;
padding: 10px 0 10px 40px;
}
.external-links a::after {
content: " ›";
font-size: 16px;
}
.external-links a:hover {
color: #e24912;
}
.help-link,
.shop-link,
.community-link {
background: url(http://start.ubuntu.com/12.04/sprite.png) no-repeat;
}
.help-link {
background-position: -10px -450px;
}
.help-link:hover {
background-position: -10px -490px;
}
.shop-link {
background-position: -10px -368px;
}
.shop-link:hover {
background-position: -10px -410px;
}
.community-link {
background-position: -10px -528px;
}
.community-link:hover {
background-position: -10px -568px;
}
button {
margin: 0 3px;
display: inline-block;
vertical-align: top;
cursor: default;
height: 32px;
padding: 0 8px;
text-align: center;
text-decoration: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
</style>
</head>
<body>
<div class="search-box">
<div class="ubuntu-branding"></div>
<div class="wrapper">
<div class="inner">
<a href="https://duckduckgo.com/"><img src="https://duckduckgo.com/assets/logo_header.v103.min.svg"></a></h1>
<iframe src="http://duckduckgo.com/search.html" style="overflow:hidden;margin:0;padding:0;width:408px;height:40px;" frameborder="0"></iframe>
</div>
</div>
<ul class="external-links">
<li class="help-link"><a href="https://help.ubuntu.com/">Ubuntu help</a></li>
<li class="shop-link"><a href="http://shop.ubuntu.com/">Ubuntu shop</a></li>
<li class="community-link"><a href="http://www.ubuntu.com/community">Ubuntu community</a></li>
</ul>
</div><!-- close search-box -->
</body></html>
这与官方的 Start Page 完全相同的 HTML 代码,但我用 DuckDuckGo + 一个标志替换了 Yahoo。
如果您愿意,您还可以将其托管在某处,并将该网站设置为起始页,它完全相同。