Update configs
This commit is contained in:
parent
923bd6c08d
commit
6a658b2f7c
6 changed files with 8 additions and 12 deletions
2
.bin/.e
2
.bin/.e
|
@ -3,7 +3,7 @@
|
||||||
declare -A mapper=(
|
declare -A mapper=(
|
||||||
[".e"]="$HOME/.bin/.e"
|
[".e"]="$HOME/.bin/.e"
|
||||||
[".t"]="$HOME/.bin/.t"
|
[".t"]="$HOME/.bin/.t"
|
||||||
["alacritty"]="$HOME/.config/alacritty/alacritty.yml"
|
["alacritty"]="$HOME/.config/alacritty/alacritty.toml"
|
||||||
["astronvim"]="$HOME/.config/astronvim/lua/user/init.lua"
|
["astronvim"]="$HOME/.config/astronvim/lua/user/init.lua"
|
||||||
["autostart"]="$HOME/.bin/autostart-manage"
|
["autostart"]="$HOME/.bin/autostart-manage"
|
||||||
["autostart.toml"]="$HOME/.config/autostart.toml"
|
["autostart.toml"]="$HOME/.config/autostart.toml"
|
||||||
|
|
|
@ -35,3 +35,6 @@ fi
|
||||||
#fi
|
#fi
|
||||||
|
|
||||||
printf "\n\n\n\n=== DONE ============================================================\n"
|
printf "\n\n\n\n=== DONE ============================================================\n"
|
||||||
|
|
||||||
|
# shellcheck disable=SC2162
|
||||||
|
read
|
||||||
|
|
|
@ -75,7 +75,7 @@ alias xdebug='XDEBUG_CONFIG="remote_host=127.0.0.1 remote_port=9003"'
|
||||||
|
|
||||||
test -x "$(command -v bat)" && alias cat='bat -pp'
|
test -x "$(command -v bat)" && alias cat='bat -pp'
|
||||||
|
|
||||||
test -x "$(command -v eza)" && alias ls='eza -lhF --git --icons --color=always --color-scale --color-scale-mode=fixed --time-style=long-iso --group-directories-first'
|
test -x "$(command -v eza)" && alias ls='eza -lhF --git --icons --color=always --color-scale --color-scale-mode=fixed --time-style=long-iso --group-directories-first --no-quotes'
|
||||||
|
|
||||||
test -x "$(command -v moar)" && alias less='moar'
|
test -x "$(command -v moar)" && alias less='moar'
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ export BEMENU_OPTS="--tb '#6272a4'\
|
||||||
--sf '#50fa7b'\
|
--sf '#50fa7b'\
|
||||||
--scb '#282a36'\
|
--scb '#282a36'\
|
||||||
--scf '#ff79c6'\
|
--scf '#ff79c6'\
|
||||||
--list 25 --ignorecase -p ''"
|
--list 25 --ignorecase -P '>' -p ''"
|
||||||
|
|
||||||
export DMENU="bemenu"
|
export DMENU="bemenu"
|
||||||
export DOCKER_BUILDKIT=1
|
export DOCKER_BUILDKIT=1
|
||||||
|
@ -37,9 +37,6 @@ export MOZ_ENABLE_WAYLAND=1
|
||||||
export NIXPKGS_ALLOW_UNFREE=1
|
export NIXPKGS_ALLOW_UNFREE=1
|
||||||
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npmrc"
|
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npmrc"
|
||||||
|
|
||||||
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
|
||||||
export PS1='\$ '
|
|
||||||
|
|
||||||
export QT_QPA_PLATFORMTHEME="qt5ct"
|
export QT_QPA_PLATFORMTHEME="qt5ct"
|
||||||
|
|
||||||
export TERMINAL="alacritty"
|
export TERMINAL="alacritty"
|
||||||
|
|
|
@ -28,6 +28,7 @@ def init(c):
|
||||||
|
|
||||||
c.qt.workarounds.remove_service_workers = True
|
c.qt.workarounds.remove_service_workers = True
|
||||||
|
|
||||||
|
c.url.default_page = 'dashboard.serguzim.me'
|
||||||
c.url.searchengines = {
|
c.url.searchengines = {
|
||||||
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
'DEFAULT': 'https://duckduckgo.com/?q={}',
|
||||||
'ddg': 'https://duckduckgo.com/?q={}',
|
'ddg': 'https://duckduckgo.com/?q={}',
|
||||||
|
|
|
@ -204,7 +204,7 @@ class KeepassXC:
|
||||||
action = 'request-autotype',
|
action = 'request-autotype',
|
||||||
uuid = uuid,
|
uuid = uuid,
|
||||||
))
|
))
|
||||||
return self.recv_msg()['totp']
|
return self.recv_msg()['success']
|
||||||
|
|
||||||
def send_raw_msg(self, msg):
|
def send_raw_msg(self, msg):
|
||||||
self.sock.send( json.dumps(msg).encode('utf-8') )
|
self.sock.send( json.dumps(msg).encode('utf-8') )
|
||||||
|
@ -385,11 +385,6 @@ def main():
|
||||||
if not kp:
|
if not kp:
|
||||||
error('Could not connect to KeepassXC')
|
error('Could not connect to KeepassXC')
|
||||||
|
|
||||||
#if args.autotype:
|
|
||||||
# qute('mode-enter insert')
|
|
||||||
# kp.autotype(selection['uuid'])
|
|
||||||
# return
|
|
||||||
|
|
||||||
creds = kp.get_logins(args.url)
|
creds = kp.get_logins(args.url)
|
||||||
if not creds:
|
if not creds:
|
||||||
error('No credentials found')
|
error('No credentials found')
|
||||||
|
|
Loading…
Reference in a new issue