Start adding Dash to Panel config to Nix
This commit is contained in:
parent
4bcda8ccde
commit
08709373d5
18
modules/users/common/dash-to-panel-settings
Normal file
18
modules/users/common/dash-to-panel-settings
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
[/org/gnome/shell/extensions/dash-to-panel/]
|
||||||
|
animate-appicon-hover=false
|
||||||
|
animate-appicon-hover-animation-extent={'RIPPLE': 4, 'PLANK': 4, 'SIMPLE': 1}
|
||||||
|
appicon-margin=8
|
||||||
|
appicon-padding=8
|
||||||
|
available-monitors=[0]
|
||||||
|
dot-position='BOTTOM'
|
||||||
|
hotkeys-overlay-combo='TEMPORARILY'
|
||||||
|
leftbox-padding=-1
|
||||||
|
panel-anchors='{"0":"MIDDLE"}'
|
||||||
|
panel-element-positions='{"0":[{"element":"dateMenu","visible":true,"position":"stackedTL"},{"element":"activitiesButton","visible":true,"position":"stackedTL"},{"element":"showAppsButton","visible":true,"position":"centerMonitor"},{"element":"leftBox","visible":false,"position":"stackedTL"},{"element":"taskbar","visible":true,"position":"centerMonitor"},{"element":"centerBox","visible":false,"position":"stackedBR"},{"element":"rightBox","visible":false,"position":"stackedBR"},{"element":"systemMenu","visible":true,"position":"stackedBR"},{"element":"desktopButton","visible":false,"position":"stackedBR"}]}'
|
||||||
|
panel-lengths='{"0":100}'
|
||||||
|
panel-positions='{"0":"TOP"}'
|
||||||
|
panel-sizes='{"0":64}'
|
||||||
|
primary-monitor=0
|
||||||
|
status-icon-padding=-1
|
||||||
|
tray-padding=-1
|
||||||
|
window-preview-title-position='TOP'
|
|
@ -56,5 +56,78 @@
|
||||||
"org/gnome/shell" = {
|
"org/gnome/shell" = {
|
||||||
disable-user-extensions = false;
|
disable-user-extensions = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/*
|
||||||
|
FIXME: Still needs work
|
||||||
|
"org/gnome/shell/extensions/dash-to-panel" = {
|
||||||
|
animate-appicon-hover = false;
|
||||||
|
animate-appicon-hover-animation-extent = {
|
||||||
|
RIPPLE = 4;
|
||||||
|
PLANK = 4;
|
||||||
|
SIMPLE = 1;
|
||||||
|
};
|
||||||
|
appicon-margin = 8;
|
||||||
|
appicon-padding = 8;
|
||||||
|
available-monitors= [0];
|
||||||
|
dot-position = "BOTTOM";
|
||||||
|
hotkeys-overlay-combo= "TEMPORARILY";
|
||||||
|
leftbox-padding = -1;
|
||||||
|
panel-anchors = {"0" = "MIDDLE"; };
|
||||||
|
panel-element-positions={
|
||||||
|
"0" = [{
|
||||||
|
"element" = "dateMenu";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "activitiesButton";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "showAppsButton";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "centerMonitor";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "leftBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedTL";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "taskbar";
|
||||||
|
"visible" = true;
|
||||||
|
"position" = "centerMonitor";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "centerBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "rightBox";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "systemMenu";
|
||||||
|
"visible" = true;
|
||||||
|
"position"= "stackedBR";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"element" = "desktopButton";
|
||||||
|
"visible" = false;
|
||||||
|
"position" = "stackedBR";
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
panel-lengths = { "0" = 100; };
|
||||||
|
panel-positions = { "0" = "TOP"; };
|
||||||
|
panel-sizes = { "0" = 64; };
|
||||||
|
primary-monitor = 0;
|
||||||
|
status-icon-padding = -1;
|
||||||
|
tray-padding = -1;
|
||||||
|
window-preview-title-position = "TOP";
|
||||||
|
};
|
||||||
|
*/
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue