mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
dotfiles: Add bookmarks to toolbar
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
This commit is contained in:
parent
f67a71ad5b
commit
b6bb7eaff4
|
@ -84,12 +84,25 @@ in {
|
||||||
userChrome = ''
|
userChrome = ''
|
||||||
.titlebar-buttonbox-container, .titlebar-spacer, #alltabs-button {
|
.titlebar-buttonbox-container, .titlebar-spacer, #alltabs-button {
|
||||||
display:none;
|
display:none;
|
||||||
}'';
|
}
|
||||||
|
#PlacesToolbarItems {justify-content: center;}
|
||||||
|
'';
|
||||||
|
bookmarks = [{
|
||||||
|
name = "Toolbar";
|
||||||
|
toolbar = true;
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
{
|
{
|
||||||
name = "NixOS Search";
|
name = "NixOS Search";
|
||||||
url = "https://search.nixos.org";
|
url = "https://search.nixos.org";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "Yandex";
|
||||||
|
url = "https://ya.ru";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
name = "Google";
|
||||||
|
url = "https://google.com";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "GitHub";
|
name = "GitHub";
|
||||||
url = "https://github.com";
|
url = "https://github.com";
|
||||||
|
@ -98,6 +111,10 @@ in {
|
||||||
name = "YouTube";
|
name = "YouTube";
|
||||||
url = "https://youtube.com";
|
url = "https://youtube.com";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
name = "Telegram";
|
||||||
|
url = "https://web.telegram.org";
|
||||||
|
}
|
||||||
{
|
{
|
||||||
name = "VK";
|
name = "VK";
|
||||||
url = "https://vk.com";
|
url = "https://vk.com";
|
||||||
|
@ -112,6 +129,7 @@ in {
|
||||||
url = "https://dnevnik2.petersburgedu.ru";
|
url = "https://dnevnik2.petersburgedu.ru";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
}];
|
||||||
settings = {
|
settings = {
|
||||||
"intl.accept_languages" = [ "ru-RU" "ru" "en-US" "en" ];
|
"intl.accept_languages" = [ "ru-RU" "ru" "en-US" "en" ];
|
||||||
"font.language.group" = "x-cyrillic";
|
"font.language.group" = "x-cyrillic";
|
||||||
|
|
Loading…
Reference in a new issue