feat(ags): update exclusivity
This commit is contained in:
parent
4eb9d259cf
commit
d296dbf4bd
4 changed files with 2 additions and 5 deletions
|
@ -32,7 +32,7 @@ export const Bar = () => Window({
|
|||
name: 'bar',
|
||||
layer: 'overlay',
|
||||
anchor: ['top', 'left', 'right'],
|
||||
exclusive: true,
|
||||
exclusivity: 'exclusive',
|
||||
child: Revealer({
|
||||
child: CenterBox({
|
||||
className: 'bar',
|
||||
|
|
|
@ -29,6 +29,7 @@ export default () => {
|
|||
const window = PopupWindow({
|
||||
name: 'osd',
|
||||
anchor: ['bottom'],
|
||||
exclusivity: 'ignore',
|
||||
closeOnUnfocus: 'stay',
|
||||
transition: 'slide_up',
|
||||
transitionDuration: 200,
|
||||
|
|
|
@ -74,7 +74,6 @@ export const Topleft = () => Window({
|
|||
name: 'cornertl',
|
||||
layer: 'overlay',
|
||||
anchor: ['top', 'left'],
|
||||
exclusive: false,
|
||||
visible: true,
|
||||
child: RoundedCorner('topleft', { className: 'corner' }),
|
||||
});
|
||||
|
@ -82,7 +81,6 @@ export const Topright = () => Window({
|
|||
name: 'cornertr',
|
||||
layer: 'overlay',
|
||||
anchor: ['top', 'right'],
|
||||
exclusive: false,
|
||||
visible: true,
|
||||
child: RoundedCorner('topright', { className: 'corner' }),
|
||||
});
|
||||
|
@ -90,7 +88,6 @@ export const Bottomleft = () => Window({
|
|||
name: 'cornerbl',
|
||||
layer: 'overlay',
|
||||
anchor: ['bottom', 'left'],
|
||||
exclusive: false,
|
||||
visible: true,
|
||||
child: RoundedCorner('bottomleft', { className: 'corner' }),
|
||||
});
|
||||
|
@ -98,7 +95,6 @@ export const Bottomright = () => Window({
|
|||
name: 'cornerbr',
|
||||
layer: 'overlay',
|
||||
anchor: ['bottom', 'right'],
|
||||
exclusive: false,
|
||||
visible: true,
|
||||
child: RoundedCorner('bottomright', { className: 'corner' }),
|
||||
});
|
||||
|
|
BIN
flake.lock
BIN
flake.lock
Binary file not shown.
Loading…
Reference in a new issue