fix configs
This commit is contained in:
parent
1c5dee2911
commit
f2514ee01f
3 changed files with 106 additions and 8 deletions
83
dot_config/sov/html/main.css
Normal file
83
dot_config/sov/html/main.css
Normal file
|
@ -0,0 +1,83 @@
|
|||
#main {
|
||||
border-radius: 10px;
|
||||
background-color: #00000044;
|
||||
}
|
||||
|
||||
#base {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.fullscale {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.colflex {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.rowflex {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.workspace {
|
||||
margin: 10px;
|
||||
border-radius: 8px;
|
||||
background-color: #000000FF;
|
||||
border-width: 1px;
|
||||
border-color: #555555FF;
|
||||
}
|
||||
|
||||
.window {
|
||||
width: 100px;
|
||||
height: 80px;
|
||||
background-color: #222222FF;
|
||||
border-radius: 8px;
|
||||
border-width: 1px;
|
||||
border-color: #BCBCBCFF;
|
||||
}
|
||||
|
||||
.window_active {
|
||||
width: 100px;
|
||||
height: 80px;
|
||||
background-color: #444444FF;
|
||||
border-radius: 8px;
|
||||
border-width: 1px;
|
||||
border-color: #BCBCBCFF;
|
||||
}
|
||||
|
||||
.title {
|
||||
width: 100%;
|
||||
height: 21px;
|
||||
margin-top: 4px;
|
||||
margin-left: 4px;
|
||||
margin-right: 4px;
|
||||
color: #FFFFFFFF;
|
||||
font-size: 14px;
|
||||
font-family: "Terminus (TTF):style=Bold";
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin-left: 4px;
|
||||
margin-right: 4px;
|
||||
color: #999999FF;
|
||||
vertical-align: top;
|
||||
font-size: 12px;
|
||||
font-family: "Terminus (TTF):style=Bold";
|
||||
word-wrap: break-word;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
.number {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
right: -14px;
|
||||
top: -9px;
|
||||
color: #FFFFFFFF;
|
||||
font-size: 18px;
|
||||
font-family: "Terminus (TTF):style=Bold";
|
||||
}
|
15
dot_config/sov/html/main.html
Normal file
15
dot_config/sov/html/main.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
<div id="main" class="fullscale">
|
||||
<div id="base" class="fullscale colflex">
|
||||
<div id="row" class="fullscale rowflex">
|
||||
<div id="workspace" class="fullscale workspace">
|
||||
<div id="number" class="number" type="label" text="0"/>
|
||||
<div id="window" class="window colflex">
|
||||
<div id="title" class="title" type="label" text="foot"/>
|
||||
<div id="content" class="content" type="label" text="build/sov"/>
|
||||
</div>
|
||||
<div id="window_active" class="window_active colflex">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -314,11 +314,11 @@ set $mode_launcher Launch: [f]irefox [t]hunderbird [p]avucontrol [w]displays fil
|
|||
bindsym $mod+o mode "$mode_launcher"
|
||||
|
||||
mode "$mode_launcher" {
|
||||
bindsym f exec firefox
|
||||
bindsym t exec thunderbird
|
||||
bindsym p exec pavucontrol-qt
|
||||
bindsym w exec wdisplays
|
||||
bindsym m exec pcmanfm-qt
|
||||
bindsym f exec firefox, mode "default"
|
||||
bindsym t exec thunderbird, mode "default"
|
||||
bindsym p exec pavucontrol-qt, mode "default"
|
||||
bindsym w exec wdisplays, mode "default"
|
||||
bindsym m exec pcmanfm-qt, mode "default"
|
||||
|
||||
bindsym Escape mode "default"
|
||||
bindsym Return mode "default"
|
||||
|
@ -452,7 +452,7 @@ bindsym XF86AudioPrev exec playerctl previous
|
|||
# 1. Capture a Selection
|
||||
bindsym Print exec grim -g "$(slurp)" $(xdg-user-dir PICTURES)/$(date +'%Y-%m-%d-%H%M%S_grim.png')
|
||||
# 2. Capture the actually Display
|
||||
bindsym $mod+Shift+Print exec grim -o $(swaymsg -t get_outputs | jq -r '.[] | select(.focused) | .name') $(xdg-user-dir PICTURES)/$(date +'%Y-%m-%d-%H%M%S_grim.png')
|
||||
bindsym Shift+Print exec grim $(xdg-user-dir PICTURES)/$(date +'%Y-%m-%d-%H%M%S_grim.png')
|
||||
|
||||
bindsym $mod+p exec wlogout -p layer-shell
|
||||
|
||||
|
@ -519,8 +519,8 @@ exec --no-startup-id "mako -c .config/mako/config"
|
|||
# imwheel faster scrolling (deactivated sound bug)
|
||||
#exec --no-startup-id imwheel
|
||||
|
||||
# authentication manager
|
||||
exec --no-startup-id lxpolkit
|
||||
# authentication manager (https://wiki.archlinux.org/title/Polkit)
|
||||
exec --no-startup-id /usr/bin/lxqt-policykit-agent
|
||||
|
||||
# xfce4-power-manager
|
||||
#exec --no-startup-id xfce4-power-manager
|
||||
|
|
Loading…
Reference in a new issue