feat(i3): load workspace layouts at startup

This commit is contained in:
Michael Mandl 2022-06-28 17:05:14 +02:00
parent a7e8d14391
commit 8935eeac4b
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
5 changed files with 88 additions and 4 deletions

View file

@ -0,0 +1,10 @@
// vim:ts=4:sw=4:et
{
"name": "Terminal",
"swallows": [
{
"class": "^kitty$"
}
],
"type": "con"
}

View file

@ -0,0 +1,36 @@
// vim:ts=4:sw=4:et
{
"layout": "tabbed",
"type": "con",
"nodes": [
{
"name": "Telegram",
"swallows": [
{
"class": "^TelegramDesktop$"
}
],
"type": "con"
},
{
"name": "Signal",
"swallows": [
{
"class": "^Signal$"
}
],
"type": "con"
}
]
}
{
"name": "Slack",
"swallows": [
{
"class": "^Slack$"
}
],
"type": "con"
}

View file

@ -0,0 +1,10 @@
// vim:ts=4:sw=4:et
{
"name": "Email",
"swallows": [
{
"class": "^Thunderbird$"
}
],
"type": "con"
}

View file

@ -0,0 +1,10 @@
// vim:ts=4:sw=4:et
{
"name": "Browser",
"swallows": [
{
"class": "^firefox$"
}
],
"type": "con"
}