Update 19.08.2022

This commit is contained in:
Kristofers Solo 2022-08-19 20:52:59 +03:00
parent 2135ea48be
commit ced712f31f
11 changed files with 86 additions and 59 deletions

View File

@ -635,7 +635,7 @@ awful.rules.rules = {
},
{
rule_any = {
class = { "spotify", "Spotify" },
class = { "Spotify" },
},
properties = { screen = 1, tag = "9" },
},

View File

@ -289,7 +289,6 @@ Vagrantfile 
*.jpeg 
*.mjpg 
*.mjpeg 
*.gif 
*.bmp 
*.pbm 
*.pgm 
@ -302,56 +301,59 @@ Vagrantfile 
*.png 
*.svg 
*.svgz 
*.mng 
*.pcx 
*.mov 
*.mpg 
*.mpeg 
*.m2v 
*.mkv 
*.webm 
*.ogm 
*.mp4 
*.m4v 
*.mp4v 
*.vob 
*.qt 
*.nuv 
*.wmv 
*.asf 
*.rm 
*.rmvb 
*.flc 
*.avi 
*.fli 
*.flv 
*.gl 
*.dl 
*.xcf 
*.xwd 
*.yuv 
*.cgm 
*.emf 
*.ogv 
*.ogx 
# video formats
*.mkv 
*.asf 
*.yuv 
*.avi 
*.gif 
*.mpg 
*.mpeg 
*.qt 
*.mng 
*.ogv 
*.webm 
*.vob 
*.flv 
*.mov 
*.wmv 
*.mp4 
*.m4v 
*.mp4v 
# audio formats (extensions from dircolors defaults)
*.aac 
*.au 
*.flac 
*.m4a 
*.mid 
*.midi 
*.mka 
*.mp3 
*.mpc 
*.ogg 
*.ra 
*.wav 
*.oga 
*.opus 
*.spx 
*.xspf 
*.aac
*.au
*.flac
*.m4a
*.mid
*.midi
*.mka
*.mp3
*.mpc
*.ogg
*.ra
*.wav
*.oga
*.opus
*.spx
*.xspf
# other formats
*.pdf 

View File

@ -90,6 +90,7 @@ map e $nvim "$f"
# Movement
map gd cd ~/Downloads
map gD cd ~/Dropbox
map gn cd ~/Nextcloud
map gp cd ~/Pictures
map gc cd ~/.config
map gr cd ~/repos

View File

@ -1,10 +1,17 @@
[Default Applications]
application/pdf=pdf.desktop;
audio/mpeg=mpv.desktop;
inode/directory=spacefm.desktop
text/html=text.desktop;
text/py=text.desktop;
text/markdown=text.desktop;
text/plain=text.desktop;
x-scheme-handler/http=librewolf.desktop;
x-scheme-handler/https=librewolf.desktop;
x-scheme-handler/about=librewolf.desktop;
x-scheme-handler/tg=userapp-Telegram Desktop-M1D2M1.desktop
x-scheme-handler/msteams=teams.desktop;
application/pdf=pdf.desktop;
image/x-canon-cr2=img.desktop;
image/jpeg=img.desktop;
image/jpg=img.desktop;
@ -12,7 +19,16 @@ image/png=img.desktop;
image/gif=img.desktop;
image/heic=img.desktop
image/heif=img.desktop;
image/webp=img.desktop;
image/svg+xml=org.inkscape.Inkscape.desktop;
video/ts=mpv.desktop;
video/mp4=mpv.desktop;
video/mpeg=mpv.desktop;
video/mpv=mpv.desktop;
audio/mpeg=mpv.desktop;
application/octet-stream=mpv.desktop
inode/directory=spacefm.desktop

View File

@ -433,6 +433,7 @@ opacity-rule = [
"95:class_g = 'Ripcord'",
"95:class_g = 'discord'",
"95:class_g = 'TelegramDesktop'",
"90:class_g = 'kdeconnect.app'",
]

View File

@ -35,6 +35,8 @@ alias \
gc="git commit" \
gP="git push" \
gp="git pull" \
gs="git status" \
gd="git diff" \
e="$EDITOR" \
v="$EDITOR" \
battery="acpi" \

View File

@ -1,14 +1,17 @@
#!/bin/zsh
typeset -U PATH path
# Disable files
export LESSHISTFILE=-
export $(dbus-launch)
# Default Apps
export EDITOR="nvim"
export VISUAL="nvim"
export READER="zathura"
export TERMINAL="alacritty"
export BROWSER="firefox"
export BROWSER="librewolf"
export VIDEO="mpv"
export IMAGE="nsxiv"
export WM="awesome"

View File

@ -1,8 +1,11 @@
/usr/bin/pipewire &
/usr/bin/pipewire-pulse &
/usr/bin/wireplumber &
/usr/bin/numlockx on &
/usr/bin/flameshot &
/usr/bin/corectrl &
#!/bin/sh
autostart="pipewire pipewire-pulse wireplumber flameshot"
for program in $autostart; do
pidof -s "$program" || "$program" &
done >/dev/null 2>&1
numlockx on &
exec dbus-launch --sh-syntax --exit-with-session awesome

View File

@ -2,7 +2,7 @@
[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/startup" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/zsh/startup"
# Options
# setopt correct # Auto correct mistakes setopt extendedglob # Extended globaling. Allows using regular expressions with *
setopt correct # Auto correct mistakes setopt extendedglob # Extended globaling. Allows using regular expressions with *
setopt nocaseglob # Case insensative globbing
setopt numericglobsort # Sort filenames numeracally when it makse sense
setopt nobeep # No beep

1
.gitignore vendored
View File

@ -1 +0,0 @@
.luarc.json

View File

@ -1 +1 @@
.config/zsh/.zshenv
.config/shell/env