Compare commits
6 commits
ae9c344f7a
...
4a130def87
Author | SHA1 | Date | |
---|---|---|---|
|
4a130def87 | ||
|
33ed9eb20e | ||
|
f7a12487d0 | ||
|
135ecb8948 | ||
|
e28c6f94c9 | ||
|
d3f5f1c01e |
4 changed files with 20 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -170,8 +170,8 @@ SetEditor=false
|
||||||
[MainWindow]
|
[MainWindow]
|
||||||
1920x1200 screen: Height=1110
|
1920x1200 screen: Height=1110
|
||||||
1920x1200 screen: Width=1896
|
1920x1200 screen: Width=1896
|
||||||
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
|
||||||
|
|
|
@ -17,6 +17,7 @@ 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'
|
||||||
|
|
|
@ -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