Compare commits

...

2 commits

Author SHA1 Message Date
4a6de219fe
Fix minor issues 2022-05-15 23:46:53 +02:00
2a51281db8
Add git-retag and woodpecker_server 2022-04-20 23:31:37 +02:00
9 changed files with 25 additions and 5 deletions

View file

@ -1,4 +1,4 @@
#!/usr/bin/sh #!/usr/bin/env sh
set -e set -e

12
.bin/git-retag Executable file
View 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"

View file

@ -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

View file

@ -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"

View file

@ -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

View file

@ -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={}',
} }

View file

@ -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

View file

@ -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'

View file

@ -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 &