Initial commit
This commit is contained in:
commit
209ba130c0
4852 changed files with 1517959 additions and 0 deletions
84
.config/swaync/config.json
Normal file
84
.config/swaync/config.json
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
{
|
||||
"$schema": "/etc/xdg/swaync/configSchema.json",
|
||||
"positionX": "right",
|
||||
"positionY": "top",
|
||||
"layer": "overlay",
|
||||
"control-center-layer": "top",
|
||||
"layer-shell": true,
|
||||
"cssPriority": "user",
|
||||
"control-center-margin-top": 13,
|
||||
"control-center-margin-bottom": 0,
|
||||
"control-center-margin-right": 14,
|
||||
"control-center-margin-left": 0,
|
||||
"notification-2fa-action": true,
|
||||
"notification-inline-replies": false,
|
||||
"notification-icon-size": 24,
|
||||
"notification-body-image-height": 100,
|
||||
"notification-body-image-width": 100,
|
||||
"notification-window-width": 300,
|
||||
"timeout": 6,
|
||||
"timeout-low": 3,
|
||||
"timeout-critical": 0,
|
||||
"fit-to-screen": false,
|
||||
"control-center-width": 400,
|
||||
"control-center-height": 720,
|
||||
"keyboard-shortcuts": true,
|
||||
"image-visibility": "when-available",
|
||||
"transition-time": 200,
|
||||
"hide-on-clear": false,
|
||||
"hide-on-action": true,
|
||||
"script-fail-notify": true,
|
||||
"widgets": [
|
||||
"dnd",
|
||||
"buttons-grid",
|
||||
"mpris",
|
||||
"volume",
|
||||
"backlight",
|
||||
"title",
|
||||
"notifications"
|
||||
],
|
||||
"widget-config": {
|
||||
"title": {
|
||||
"text": "Notifications",
|
||||
"clear-all-button": true,
|
||||
"button-text": "Clear"
|
||||
},
|
||||
"dnd": {
|
||||
"text": "Do Not Disturb"
|
||||
},
|
||||
"label": {
|
||||
"max-lines": 1,
|
||||
"text": "Notification"
|
||||
},
|
||||
"mpris": {
|
||||
"image-size": 50,
|
||||
"image-radius": 0
|
||||
},
|
||||
"volume": {
|
||||
"label": ""
|
||||
},
|
||||
"backlight": {
|
||||
"label": ""
|
||||
},
|
||||
"buttons-grid": {
|
||||
"actions": [
|
||||
{
|
||||
"label": "",
|
||||
"command": "hyprlock"
|
||||
},
|
||||
{
|
||||
"label": "",
|
||||
"command": "pactl set-sink-mute @DEFAULT_SINK@ toggle"
|
||||
},
|
||||
{
|
||||
"label": "",
|
||||
"command": "blueman-manager"
|
||||
},
|
||||
{
|
||||
"label": "",
|
||||
"command": "bash -c $HOME/.config/ml4w/scripts/wlogout.sh"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
48
.config/swaync/style.css
Normal file
48
.config/swaync/style.css
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/* Colors */
|
||||
|
||||
@import 'colors.css';
|
||||
@define-color background @background;
|
||||
@define-color groupbackground @background;
|
||||
@define-color buttoncolor @secondary;
|
||||
@define-color bordercolor @primary;
|
||||
@define-color fontcolor @on_surface;
|
||||
|
||||
* {
|
||||
font-family: "Fira Sans Semibold";
|
||||
}
|
||||
|
||||
/* Control Center */
|
||||
|
||||
.control-center {
|
||||
border: 3px solid @bordercolor;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
button {
|
||||
border: 0px;
|
||||
min-width: 35px;
|
||||
background: @buttoncolor;
|
||||
color: @on_secondary;
|
||||
}
|
||||
|
||||
.notification-group-header {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.widget-buttons-grid > flowbox > flowboxchild > button {
|
||||
margin:5px;
|
||||
}
|
||||
|
||||
/* Notification */
|
||||
|
||||
.notification {
|
||||
border: 3px solid @bordercolor;
|
||||
border-radius: 10px;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
.notification-default-action:hover,
|
||||
.notification-action:hover {
|
||||
color: #ffffff;
|
||||
background: transparent;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue