fix(ags): fix a couple issues with the clipboard
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
cd6c33ce9a
commit
e502c23c02
3 changed files with 4 additions and 5 deletions
|
@ -50,7 +50,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*:selected, .item:hover, .item:focus {
|
*:selected .item, .item:hover, .item:focus {
|
||||||
background-color: #363449;
|
background-color: #363449;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*:selected, .item:hover, .item:focus {
|
*:selected .item, .item:hover, .item:focus {
|
||||||
background-color: #363449;
|
background-color: #363449;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,9 +13,8 @@ const N_ITEMS = 30;
|
||||||
const copyOldItem = (key: string | number): void => {
|
const copyOldItem = (key: string | number): void => {
|
||||||
execAsync([
|
execAsync([
|
||||||
'bash', '-c', `cliphist list | grep ${key} | cliphist decode | wl-copy`,
|
'bash', '-c', `cliphist list | grep ${key} | cliphist decode | wl-copy`,
|
||||||
]).then(() => {
|
]);
|
||||||
App.closeWindow('win-clipboard');
|
App.closeWindow('win-clipboard');
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default () => {
|
export default () => {
|
||||||
|
|
Loading…
Reference in a new issue