Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jay Ta'ala
jt-config-repo
Commits
30a072a3
Commit
30a072a3
authored
Aug 02, 2023
by
Jay Ta'ala
Browse files
Updated paperwm files. Added logseq.
parent
e60a72ef
Changes
4
Hide whitespace changes
Inline
Side-by-side
logseq/custom.css
0 → 100644
View file @
30a072a3
#root
>
div
.dark-theme
{
--ls-primary-background-color
:
hsl
(
0
,
0%
,
12%
);
--ls-secondary-background-color
:
hsl
(
0
,
0%
,
9%
);
--ls-tag-text-color
:
hsl
(
180
,
70%
,
64%
);
--ls-link-ref-text-color
:
hsl
(
180
,
60%
,
44%
);
}
.ls-block
[
level
~=
'1'
]
{
margin-bottom
:
1em
;
}
.ls-block
[
level
~=
'2'
]
{
margin-bottom
:
0.5em
;
}
.mt-10
{
margin-top
:
0
;
}
#journals
.journal-item
,
#journals
.journal-item
:first-child
{
min-height
:
0px
;
}
paperwm/metadata.json
View file @
30a072a3
{
"uuid"
:
"paperwm@
hedning:matrix.org
"
,
"uuid"
:
"paperwm@
paperwm.github.com
"
,
"name"
:
"PaperWM"
,
"description"
:
"Tiling window manager with a twist"
,
"url"
:
"https://github.com/paperwm/PaperWM"
,
"settings-schema"
:
"org.gnome.Shell.Extensions.PaperWM"
,
"shell-version"
:
[
"42"
,
"43"
],
"version"
:
"43.0"
,
"session-modes"
:
[
"unlock-dialog"
,
"user"
]
"settings-schema"
:
"org.gnome.shell.extensions.paperwm"
,
"shell-version"
:
[
"42"
,
"43"
,
"44"
]
}
paperwm/user.css
View file @
30a072a3
.paperwm-selection
{
.switcher-list
{
background-color
:
rgba
(
0
,
0
,
0
,
0.7
);
}
.paperwm-selection
,
.item-box
:selected
{
border-color
:
#d64161
;
/*border-color: #00b398;*/
}
.paperwm-selection
{
background-color
:
#d64161
;
/*background-color: #00b398;*/
}
.paperwm-minimap-selection
{
border-color
:
#d64161
;
}
\ No newline at end of file
.paperwm-window-position-bar
{
background-color
:
rgba
(
66
,
215
,
215
,
0.35
);
/*background-color: rgba(214, 65, 97, 0.5);
background-color: rgba(0, 179, 152, 0.50);*/
}
paperwm/user.js
View file @
30a072a3
// -*- mode: gnome-shell -*-
var
Meta
=
imports
.
gi
.
Meta
;
var
Clutter
=
imports
.
gi
.
Clutter
;
var
St
=
imports
.
gi
.
St
;
var
Main
=
imports
.
ui
.
main
;
var
Shell
=
imports
.
gi
.
Shell
;
// Extension local imports
var
Extension
,
Me
,
Tiling
,
Utils
,
App
,
Keybindings
,
Examples
;
function
init
()
{
// Runs _only_ once on startup
// Initialize extension imports here to make gnome-shell-reload work
Extension
=
imports
.
misc
.
extensionUtils
.
getCurrentExtension
();
Me
=
Extension
.
imports
.
user
;
Tiling
=
Extension
.
imports
.
tiling
;
Utils
=
Extension
.
imports
.
utils
;
Keybindings
=
Extension
.
imports
.
keybindings
;
Examples
=
Extension
.
imports
.
examples
;
App
=
Extension
.
imports
.
app
;
Tiling
.
defwinprop
({
wm_class
:
"
mpv
"
,
scratch_layer
:
true
,
});
Tiling
.
defwinprop
({
wm_class
:
/gnome-terminal/i
,
preferredWidth
:
"
50%
"
,
});
Tiling
.
defwinprop
({
wm_class
:
/xfce4-terminal/i
,
preferredWidth
:
"
50%
"
,
});
Tiling
.
defwinprop
({
wm_class
:
/alacritty/i
,
preferredWidth
:
"
50%
"
,
});
}
const
Extension
=
imports
.
misc
.
extensionUtils
.
getCurrentExtension
();
const
Tiling
=
Extension
.
imports
.
tiling
;
const
Keybindings
=
Extension
.
imports
.
keybindings
;
function
enable
()
{
// Runs
o
n extension
reloads, eg. when unlocking the session
// Runs
whe
n extension
is enabled
}
function
disable
()
{
// Runs
o
n extension
reloads eg. when locking the session (`<super>L).
// Runs
whe
n extension
is disabled
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment