Remove ST, wait for network before checking updates
parent
9005bdc3ff
commit
7928bca8a4
|
@ -197,15 +197,11 @@ exec --no-startup-id redshift-gtk
|
|||
|
||||
# Set ALSA initial volume
|
||||
exec-always --no-startup-id amixer -D hw:PCH -M sset Master 50%
|
||||
exec --no-startup-id pavucontrol
|
||||
|
||||
for_window [class="^Thunderbird*"] move container to workspace 3
|
||||
for_window [class="^Signa*"] move container to workspace 3
|
||||
|
||||
# Cadence will take care of all we need :
|
||||
# - Config tells Cadence to start LADISH, export MIDI hw and start A2J ;
|
||||
# - LADISH implies JACK starts, then it will starts needed apps (e.g. Non-Mixer)
|
||||
exec --no-startup-id cadence-session-start --start
|
||||
|
||||
# Automate port mapping for applications
|
||||
exec --no-startup-id jack-matchmaker -p ~/.config/jack-matchmaker/patterns
|
||||
|
||||
|
@ -221,3 +217,4 @@ exec signal-desktop
|
|||
bindsym $mod+Print exec ~/.config/i3/scripts/screenshot.py -s
|
||||
# Upload to Lychee
|
||||
bindsym Print exec ~/.config/i3/scripts/screenshot.py -u
|
||||
for_window [class="^Pavucontrol"] move container to workspace 4
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Wait until we can ping default gateway
|
||||
until ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` > /dev/null
|
||||
do
|
||||
sleep 1
|
||||
done
|
||||
|
||||
updates_arch=$(/usr/bin/checkupdates | wc -l)
|
||||
|
||||
updates_aur=$(/usr/bin/checkupdates-aur | wc -l)
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
# Ignore everything by default
|
||||
/*
|
||||
|
||||
# Except user preferences and package list (retrieved automatically by pkg control)
|
||||
!.gitignore
|
||||
!/Packages
|
||||
!/Packages/User
|
||||
!/Packages/User/Preferences.sublime-settings
|
||||
!/Packages/User/Package Control.sublime-settings
|
|
@ -1,24 +0,0 @@
|
|||
{
|
||||
"bootstrapped": true,
|
||||
"in_process_packages":
|
||||
[
|
||||
],
|
||||
"installed_packages":
|
||||
[
|
||||
"AutoDocstring",
|
||||
"Color Scheme - Chromodynamics",
|
||||
"ColorHelper",
|
||||
"CSS3",
|
||||
"Dockerfile Syntax Highlighting",
|
||||
"Emoji",
|
||||
"HTMLBeautify",
|
||||
"MarkdownEditing",
|
||||
"MarkdownTOC",
|
||||
"Monokai - Spacegray",
|
||||
"Package Control",
|
||||
"Pretty JSON",
|
||||
"Seti_UI",
|
||||
"Skins",
|
||||
"TypeScript"
|
||||
]
|
||||
}
|
|
@ -1,10 +0,0 @@
|
|||
{
|
||||
"color_scheme": "Packages/Monokai - Spacegray/Monokai - Spacegray.tmTheme",
|
||||
"font_size": 20,
|
||||
"ignored_packages":
|
||||
[
|
||||
"Markdown",
|
||||
"Vintage"
|
||||
],
|
||||
"theme": "Seti.sublime-theme"
|
||||
}
|
4
.zshrc
4
.zshrc
|
@ -117,4 +117,6 @@ alias ldap_pica='sudo ssh -L 389:localhost:389 qduchemi@monitoring.picasoft.net
|
|||
# Instead "AddKeysToAgent yes" option in ~/.ssh/config for "Host *"
|
||||
eval "$(ssh-agent -s -t 3600)"
|
||||
|
||||
alias lt='ls -lath'
|
||||
alias lt='ls -lath'
|
||||
alias bela_fs='sshfs root@192.168.7.2:/root/Bela/projects/ /home/cave/bela'
|
||||
export PATH=${PATH}:~/picasoft/pass
|
||||
|
|
Loading…
Reference in New Issue