feat(binto ags): use ags for app launcher
This commit is contained in:
parent
d85b0aa0a6
commit
0db1766755
4 changed files with 130 additions and 3 deletions
|
@ -3,6 +3,7 @@ import { exec } from 'resource:///com/github/Aylur/ags/utils.js';
|
||||||
|
|
||||||
import Pointers from 'file:///home/matt/.nix/devices/wim/config/ags/services/pointers.js';
|
import Pointers from 'file:///home/matt/.nix/devices/wim/config/ags/services/pointers.js';
|
||||||
|
|
||||||
|
import AppLauncher from 'file:///home/matt/.nix/devices/wim/config/ags/js/applauncher/main.js';
|
||||||
import Bar from './js/bar/main.js';
|
import Bar from './js/bar/main.js';
|
||||||
import { NotifPopups, NotifCenter } from './js/notifications/main.js';
|
import { NotifPopups, NotifCenter } from './js/notifications/main.js';
|
||||||
|
|
||||||
|
@ -18,15 +19,18 @@ export default {
|
||||||
cacheNotificationActions: true,
|
cacheNotificationActions: true,
|
||||||
|
|
||||||
onConfigParsed: () => {
|
onConfigParsed: () => {
|
||||||
globalThis.Ponters = Pointers;
|
globalThis.Pointers = Pointers;
|
||||||
},
|
},
|
||||||
|
|
||||||
closeWindowDelay: {
|
closeWindowDelay: {
|
||||||
|
'applauncher': 500,
|
||||||
'notification-center': 500,
|
'notification-center': 500,
|
||||||
},
|
},
|
||||||
windows: [
|
windows: [
|
||||||
Bar(),
|
AppLauncher(),
|
||||||
NotifCenter(),
|
NotifCenter(),
|
||||||
|
|
||||||
|
Bar(),
|
||||||
NotifPopups(),
|
NotifPopups(),
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
|
@ -9,6 +9,7 @@ undershoot {
|
||||||
}
|
}
|
||||||
|
|
||||||
@import '/home/matt/.nix/devices/wim/config/ags/scss/common';
|
@import '/home/matt/.nix/devices/wim/config/ags/scss/common';
|
||||||
|
@import './widgets/applauncher';
|
||||||
@import './widgets/bar';
|
@import './widgets/bar';
|
||||||
@import './widgets/notification';
|
@import './widgets/notification';
|
||||||
@import './widgets/notification-center';
|
@import './widgets/notification-center';
|
||||||
|
|
118
devices/binto/config/ags/scss/widgets/applauncher.scss
Normal file
118
devices/binto/config/ags/scss/widgets/applauncher.scss
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
.applauncher {
|
||||||
|
all: unset;
|
||||||
|
border: 2px solid $contrast-bg;
|
||||||
|
background-color: $bg;
|
||||||
|
color: #f8f8f2;
|
||||||
|
padding: 2px;
|
||||||
|
|
||||||
|
* {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
list, row {
|
||||||
|
all: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
margin: 16.2px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
image, entry {
|
||||||
|
all: unset;
|
||||||
|
border-radius: 9px;
|
||||||
|
color: #f8f8f2;
|
||||||
|
background-color: rgba(#44475a, 0.6);
|
||||||
|
border: 1px solid #44475a;
|
||||||
|
padding: 4.5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
margin-right: 9px;
|
||||||
|
-gtk-icon-transform: scale(0.8);
|
||||||
|
font-size: 25.6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scrolledwindow {
|
||||||
|
padding: 10px;
|
||||||
|
padding-bottom: 0;
|
||||||
|
min-width: 900px;
|
||||||
|
min-height: 650px;
|
||||||
|
|
||||||
|
scrollbar, scrollbar * {
|
||||||
|
all: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
scrollbar.vertical {
|
||||||
|
transition: 200ms;
|
||||||
|
background-color: rgba(23, 23, 23, 0.3);
|
||||||
|
margin: 20px 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: rgba(23, 23, 23, 0.7);
|
||||||
|
|
||||||
|
slider {
|
||||||
|
background-color: rgba(238, 238, 238, 0.7);
|
||||||
|
min-width: .6em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
slider {
|
||||||
|
background-color: rgba(238, 238, 238, 0.5);
|
||||||
|
border-radius: 9px;
|
||||||
|
min-width: .4em;
|
||||||
|
min-height: 2em;
|
||||||
|
transition: 200ms;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.placeholder {
|
||||||
|
margin-top: 9px;
|
||||||
|
color: #f8f8f2;
|
||||||
|
font-size: 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app {
|
||||||
|
all: unset;
|
||||||
|
transition: 200ms;
|
||||||
|
border-radius: 9px;
|
||||||
|
|
||||||
|
label {
|
||||||
|
transition: 200ms;
|
||||||
|
|
||||||
|
&.title {
|
||||||
|
margin-top: 20px;
|
||||||
|
color: #f8f8f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.description {
|
||||||
|
color: rgba(238, 238, 238, 0.7);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
transition: 200ms;
|
||||||
|
margin: 0 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
background-color: rgba($contrast-bg, 0.5);
|
||||||
|
box-shadow: inset 0 0 0 3px rgba(238, 238, 238, 0.03);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
*:selected, .app:hover, .app:focus {
|
||||||
|
* {
|
||||||
|
font-weight: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
label.title {
|
||||||
|
color: $contrast-bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
image {
|
||||||
|
-gtk-icon-shadow: 2px 2px $contrast-bg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -26,7 +26,11 @@ device:razer-razer-naga-pro {
|
||||||
|
|
||||||
# Binds
|
# Binds
|
||||||
bind = Alt Shift, Tab, cyclenext
|
bind = Alt Shift, Tab, cyclenext
|
||||||
bind = $mainMod, D, exec, killall -r wofi || wofi --show drun
|
|
||||||
|
## Ags & co
|
||||||
|
bindn = , Escape, exec, ags run-js 'closeAll()'
|
||||||
|
bind = $mainMod SHIFT, E , exec, ags -t powermenu
|
||||||
|
bind = $mainMod , D , exec, ags -t applauncher
|
||||||
|
|
||||||
|
|
||||||
# Rules
|
# Rules
|
||||||
|
|
Loading…
Reference in a new issue