update ksatrya configs
This commit is contained in:
parent
bcf0ef4bc5
commit
7cdddd2f98
5 changed files with 97 additions and 13 deletions
47
dunstrc
Normal file
47
dunstrc
Normal file
|
@ -0,0 +1,47 @@
|
|||
[global]
|
||||
font = SauceCodeProNerdFontMono 10
|
||||
geometry = "0x999+16-16"
|
||||
padding = 8
|
||||
indicate_hidden = no
|
||||
hide_duplicate_count = true
|
||||
idle_threshold = 240
|
||||
stack_duplicates = false
|
||||
format = "<b>%s</b> %b"
|
||||
ignore_dbusclose = true
|
||||
|
||||
[urgency_low]
|
||||
foreground = "#797979"
|
||||
background = "#000000"
|
||||
timeout = 10
|
||||
[urgency_normal]
|
||||
foreground = "#797979"
|
||||
background = "#000000"
|
||||
timeout = 10
|
||||
[urency_critical]
|
||||
foreground = "#797979"
|
||||
background = "#000000"
|
||||
timeout = 15
|
||||
|
||||
[timemsg]
|
||||
category = "time"
|
||||
set_stack_tag = "time"
|
||||
|
||||
[volmsg]
|
||||
category = "volume"
|
||||
set_stack_tag = "volume"
|
||||
|
||||
[brightmsg]
|
||||
category = "brightness"
|
||||
set_stack_tag = "brightness"
|
||||
|
||||
[batmsg]
|
||||
category = "power"
|
||||
set_stack_tag = "power"
|
||||
|
||||
[virtual]
|
||||
category = "virtual"
|
||||
set_stack_tag = "virtual"
|
||||
|
||||
[email]
|
||||
category = "mail"
|
||||
set_stack_tag = "mail"
|
17
kshrc
17
kshrc
|
@ -122,12 +122,21 @@ mssqldb()
|
|||
fi
|
||||
}
|
||||
|
||||
mondev(){
|
||||
case $1 in
|
||||
db)
|
||||
docker run -it --rm -e MONGO_INITDB_ROOT_USERNAME="root" -e MONGO_INITDB_ROOT_PASSWORD="BadDefaultPassword" -e dbUser="mondev" -e dbPwd="mondevpw" -p 27017:27017 mondev_db;;
|
||||
acs)
|
||||
docker run -it --rm -e RABBITMQ_ADDRESS="172.17.0.3" -e RABBITMQ_PORT="5672" -e CLIENT_PORT="25252" -p 15673:15673 -p 25252:25252 mondev_acs;;
|
||||
mq)
|
||||
docker run -it --rm --hostname localhost --name rabbit -p 5672:5672 -p 15672:15672 rabbitmq;;
|
||||
*)
|
||||
echo "usage: mondev [db | acs | mq]";;
|
||||
esac
|
||||
}
|
||||
|
||||
siroonian()
|
||||
{
|
||||
if [ -z $1 ]; then
|
||||
echo "usage: siroonian [connect | auth | desktop]"
|
||||
fi
|
||||
|
||||
case $1 in
|
||||
connect)
|
||||
sudo openfortivpn;;
|
||||
|
|
14
micro/settings.json
Normal file
14
micro/settings.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"colorscheme": "solarwolf",
|
||||
"diffgutter": true,
|
||||
"divchars": " ",
|
||||
"mkparents": true,
|
||||
"parsecursor": true,
|
||||
"paste": true,
|
||||
"scrollbar": true,
|
||||
"softwrap": true,
|
||||
"statusformatl": "[$(opt:filetype)] $(opt:fileformat)/$(opt:encoding) ($(status.size))",
|
||||
"statusformatr": "$(modified)$(filename):$(line):$(col) .. $(status.lines)",
|
||||
"tabsize": 2,
|
||||
"tabstospaces": true
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
nitrogen --restore &
|
||||
pulseaudio --start --exit-idle-time=-1
|
||||
~/src/zenUtils/batAlarm.sh &
|
||||
~/src/zenUtils/transsetter.sh &
|
||||
xbindkeys -f ~/.xbindkeysrc &
|
||||
xset -b &
|
||||
xclock -geometry -0-0 -foreground white -background black -digital -strftime "%Y-%m-%d %H:%M" -font "-*-lucidatypewriter-*-*-*-*-*-*-*-*-*-*-*-*" &
|
||||
xosview -geomerty +0+0 &
|
||||
sudo powertop --auto-tune &
|
23
xinitrc
Normal file
23
xinitrc
Normal file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
|
||||
if ! pgrep pulseaudio; then
|
||||
pulseaudio --start --exit-idle-time=-1 &
|
||||
fi
|
||||
if ! pgrep offlineimap; then
|
||||
offlineimap &
|
||||
fi
|
||||
|
||||
redshift -x; redshift -O 6000K &
|
||||
xbacklight -set 50 &
|
||||
nitrogen --restore &
|
||||
xcompmgr -n &
|
||||
plumber &
|
||||
|
||||
~/src/zenUtils/batAlarm.sh &
|
||||
~/src/zenUtils/transsetter.sh &
|
||||
xbindkeys -f ~/.xbindkeysrc &
|
||||
xset -b &
|
||||
xclock -geometry -0-0 -strftime "%Y-%m-%d %H:%M" &
|
||||
xosview -geomerty +0+0 &
|
||||
sudo powertop --auto-tune &
|
||||
exec dbus-launch ryudo -virtuals 4 -term 'alacritty --config-file ~/.config/alacritty-ryudo.yml'
|
Loading…
Reference in a new issue