Merge branch 'main' of ssh://git.pogmom.me:10022/pogmommy/dotfiles
This commit is contained in:
commit
23db45a9f0
8 changed files with 27 additions and 7 deletions
|
@ -11,7 +11,7 @@
|
||||||
;centerbar groups
|
;centerbar groups
|
||||||
|
|
||||||
(defwidget leftgroup []
|
(defwidget leftgroup []
|
||||||
(box :class "leftgroup" :orientation "h" :space-evenly false :halign "start"
|
(box :class "leftgroup profile-work" :orientation "h" :space-evenly false :halign "start"
|
||||||
(powermenu)
|
(powermenu)
|
||||||
(profile)
|
(profile)
|
||||||
(workspaces :array workspacesArray)
|
(workspaces :array workspacesArray)
|
||||||
|
|
|
@ -9,6 +9,11 @@ $bar-reveal-children-bg-color: rgba($color0, 0.2);
|
||||||
.centergroup,
|
.centergroup,
|
||||||
.rightgroup {
|
.rightgroup {
|
||||||
background-color: $bar-bg-color;
|
background-color: $bar-bg-color;
|
||||||
|
& .profile-work {
|
||||||
|
background-color: mix($color5, $color12);
|
||||||
|
}
|
||||||
|
/* background-color: lighter($bar-bg-color);
|
||||||
|
background-color: darker(mix(#d68787, #add4fb, 50%));*/
|
||||||
border-radius: $bar-module-border-radius;
|
border-radius: $bar-module-border-radius;
|
||||||
border: 3px solid $bar-module-fg-color;
|
border: 3px solid $bar-module-fg-color;
|
||||||
box-shadow: 0px 0px 9px 0px $bar-module-fg-color;
|
box-shadow: 0px 0px 9px 0px $bar-module-fg-color;
|
||||||
|
|
|
@ -168,10 +168,10 @@ RunPrefix=
|
||||||
SetEditor=false
|
SetEditor=false
|
||||||
|
|
||||||
[MainWindow]
|
[MainWindow]
|
||||||
1920x1200 screen: Height=1110
|
1920x1200 screen: Height=548
|
||||||
1920x1200 screen: Width=1896
|
1920x1200 screen: Width=745
|
||||||
2 screens: Height=1108
|
2 screens: Height=1110
|
||||||
2 screens: Width=1020
|
2 screens: Width=619
|
||||||
2048x1280 screen: Height=642
|
2048x1280 screen: Height=642
|
||||||
2048x1280 screen: Width=911
|
2048x1280 screen: Width=911
|
||||||
3 screens: Height=1054
|
3 screens: Height=1054
|
||||||
|
|
|
@ -31,7 +31,7 @@ Sort directories first=true
|
||||||
Sort hidden files last=false
|
Sort hidden files last=false
|
||||||
Sort reversed=true
|
Sort reversed=true
|
||||||
Speedbar Width=144
|
Speedbar Width=144
|
||||||
View Style=DetailTree
|
View Style=Simple
|
||||||
|
|
||||||
[KShortcutsDialog Settings]
|
[KShortcutsDialog Settings]
|
||||||
Dialog Size=600,480
|
Dialog Size=600,480
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
diskspace-check
|
diskspace-check
|
||||||
|
uptime-check
|
||||||
|
|
||||||
for s in "${HOME}/.config/sway-profiles/unlockscript.d/"*;do
|
for s in "${HOME}/.config/sway-profiles/unlockscript.d/"*;do
|
||||||
"${s}"
|
"${s}"
|
||||||
|
|
|
@ -17,9 +17,11 @@ exec {
|
||||||
udiskie -at
|
udiskie -at
|
||||||
keepassxc ~/Documents/Server/Server_Admin_Keychain.kdbx ~/Nextcloud/Security/Passwords.kdbx
|
keepassxc ~/Documents/Server/Server_Admin_Keychain.kdbx ~/Nextcloud/Security/Passwords.kdbx
|
||||||
'sleep 5;nextcloud --background'
|
'sleep 5;nextcloud --background'
|
||||||
|
'sleep 5;flatpak run com.hunterwittenborn.Celeste --background'
|
||||||
'sleep 5;rssguard'
|
'sleep 5;rssguard'
|
||||||
'sleep 5;tokodon'
|
'sleep 5;tokodon'
|
||||||
'diskspace-check'
|
'diskspace-check'
|
||||||
|
'uptime-check'
|
||||||
poweralertd
|
poweralertd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ Name=Penelope
|
||||||
IsRelative=1
|
IsRelative=1
|
||||||
Path=penelope
|
Path=penelope
|
||||||
Default=1
|
Default=1
|
||||||
StoreID=0585997e
|
StoreID=a61d59be
|
||||||
ShowSelector=1
|
ShowSelector=1
|
||||||
|
|
||||||
[General]
|
[General]
|
||||||
|
|
|
@ -61,6 +61,18 @@ filecount-monitor(){
|
||||||
[[ -z ${1} ]] && fc_targetdir=$(pwd) || fc_targetdir="${1}"
|
[[ -z ${1} ]] && fc_targetdir=$(pwd) || fc_targetdir="${1}"
|
||||||
watch "find ${fc_targetdir} -type f | wc -l"
|
watch "find ${fc_targetdir} -type f | wc -l"
|
||||||
}
|
}
|
||||||
|
pwatch(){
|
||||||
|
local firstArg=$1
|
||||||
|
if [ $(type -t $firstArg) = function ];then
|
||||||
|
shift && while true;do clear -x;command bash -c "$(declare -f $firstArg);$firstArg $*";sleep 2;done
|
||||||
|
elif [ $(type -t $firstArg) = alias ];then
|
||||||
|
# alias sudo='\sudo '
|
||||||
|
while true;do clear -x;eval "$@";sleep 2;done
|
||||||
|
else
|
||||||
|
while true;do clear -x;command "$@";sleep 2;done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
#alias devbox-stable="TERM=xterm-256color toolbox enter debian-toolbox-12"
|
#alias devbox-stable="TERM=xterm-256color toolbox enter debian-toolbox-12"
|
||||||
#alias devbox-testing="TERM=xterm-256color toolbox enter debian-toolbox-testing"
|
#alias devbox-testing="TERM=xterm-256color toolbox enter debian-toolbox-testing"
|
||||||
#git shortcut to quickly push all changes with comment
|
#git shortcut to quickly push all changes with comment
|
||||||
|
|
Loading…
Add table
Reference in a new issue