Compare commits
2 commits
78f73135b3
...
4a6de219fe
Author | SHA1 | Date | |
---|---|---|---|
4a6de219fe | |||
2a51281db8 |
9 changed files with 25 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
|
12
.bin/git-retag
Executable file
12
.bin/git-retag
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "Deleting tag from origin"
|
||||||
|
git push --delete origin "$1"
|
||||||
|
|
||||||
|
echo "Deleting tag locally"
|
||||||
|
git tag -d "$1"
|
||||||
|
|
||||||
|
echo "Recreating tag"
|
||||||
|
git tag -s -m "$1" "$1"
|
|
@ -55,6 +55,8 @@ else
|
||||||
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 focus
|
bspc monitor primary -d web terminal 3 4 5 6 7 8 9 focus
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
bspc wm --adopt-orphans
|
||||||
|
|
||||||
bspc desktop web --layout monocle
|
bspc desktop web --layout monocle
|
||||||
bspc desktop focus --layout monocle
|
bspc desktop focus --layout monocle
|
||||||
bspc desktop side-view --layout monocle
|
bspc desktop side-view --layout monocle
|
||||||
|
|
|
@ -59,6 +59,8 @@ export TERMINAL="alacritty"
|
||||||
|
|
||||||
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
export VIMINIT="source $XDG_CONFIG_HOME/vim/vimrc"
|
||||||
|
|
||||||
|
export WOODPECKER_SERVER="https://ci.serguzim.me"
|
||||||
|
|
||||||
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
||||||
export ZSH="$ZDOTDIR/oh-my-zsh"
|
export ZSH="$ZDOTDIR/oh-my-zsh"
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ venv/
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.bak
|
*.bak
|
||||||
*.git_hidden
|
*.git_hidden
|
||||||
|
*.git_hidden.*
|
||||||
|
|
||||||
# Vim Stuff
|
# Vim Stuff
|
||||||
.syntastic_*_config
|
.syntastic_*_config
|
||||||
|
|
|
@ -21,6 +21,8 @@ def init(c):
|
||||||
c.tabs.new_position.related = 'last'
|
c.tabs.new_position.related = 'last'
|
||||||
c.tabs.pinned.frozen = False
|
c.tabs.pinned.frozen = False
|
||||||
|
|
||||||
|
c.qt.workarounds.remove_service_workers = True
|
||||||
|
|
||||||
c.url.searchengines = {
|
c.url.searchengines = {
|
||||||
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
||||||
}
|
}
|
|
@ -1,9 +1,9 @@
|
||||||
import keybindings
|
import keybindings
|
||||||
import generic
|
import common
|
||||||
|
|
||||||
config.load_autoconfig()
|
config.load_autoconfig()
|
||||||
keybindings.init(config)
|
keybindings.init(config)
|
||||||
generic.init(c)
|
common.init(c)
|
||||||
|
|
||||||
c.auto_save.session = True
|
c.auto_save.session = True
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import keybindings
|
import keybindings
|
||||||
import generic
|
import common
|
||||||
|
|
||||||
config.load_autoconfig()
|
config.load_autoconfig()
|
||||||
keybindings.init(config)
|
keybindings.init(config)
|
||||||
generic.init(c)
|
common.init(c)
|
||||||
|
|
||||||
c.tabs.show = 'never'
|
c.tabs.show = 'never'
|
||||||
c.statusbar.show = 'never'
|
c.statusbar.show = 'never'
|
||||||
|
|
|
@ -64,6 +64,7 @@ _autostart()
|
||||||
|
|
||||||
pass x
|
pass x
|
||||||
(pass notes/keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
|
(pass notes/keepass | head -n 1 | keepassxc --pw-stdin ~/sync/passwords.kdbx) &
|
||||||
|
pass x && sleep 5
|
||||||
|
|
||||||
_autostart_apps &
|
_autostart_apps &
|
||||||
_autostart_workspace_voip &
|
_autostart_workspace_voip &
|
||||||
|
|
Loading…
Reference in a new issue