about time I update

master
Alessandro Mauri 3 years ago
parent 875f7a7962
commit f24450d1f6
  1. 86
      conf/config/alacritty/alacritty.yml
  2. 2
      conf/config/micro/settings.json
  3. 14
      conf/home/xinitrc
  4. 11
      conf/home/zshrc

@ -18,43 +18,79 @@ scrolling:
# Font configuration # Font configuration
font: font:
normal: normal:
family: monospace # family: Fantasque Sans Mono
family: iosevka
style: Regular
bold: bold:
family: monospace # family: Fantasque Sans Mono
family: iosevka
style: Bold
italic: italic:
family: monospace # family: Fantasque Sans Mono
size: 11.0 family: iosevka
style: Italic
size: 12.0
# gruvbox dark colors
#colors:
# # Default colors
# primary:
# # hard contrast: background = '#1d2021'
# background: '#282828'
# # soft contrast: background = '#32302f'
# foreground: '#ebdbb2'
#
# # Normal colors
# normal:
# black: '#282828'
# red: '#cc241d'
# green: '#98971a'
# yellow: '#d79921'
# blue: '#458588'
# magenta: '#b16286'
# cyan: '#689d6a'
# white: '#a89984'
#
# # Bright colors
# bright:
# black: '#928374'
# red: '#fb4934'
# green: '#b8bb26'
# yellow: '#fabd2f'
# blue: '#83a598'
# magenta: '#d3869b'
# cyan: '#8ec07c'
# white: '#ebdbb2'
colors: colors:
# Default colors # Default colors
primary: primary:
# hard contrast: background = '#1d2021' # hard contrast: background = '0xf9f5d7'
background: '#282828' background: '0xfbf1c7'
# soft contrast: background = '#32302f' # soft contrast: background = '0xf2e5bc'
foreground: '#ebdbb2' foreground: '0x3c3836'
# Normal colors # Normal colors
normal: normal:
black: '#282828' black: '0xfbf1c7'
red: '#cc241d' red: '0xcc241d'
green: '#98971a' green: '0x98971a'
yellow: '#d79921' yellow: '0xd79921'
blue: '#458588' blue: '0x458588'
magenta: '#b16286' magenta: '0xb16286'
cyan: '#689d6a' cyan: '0x689d6a'
white: '#a89984' white: '0x7c6f64'
# Bright colors # Bright colors
bright: bright:
black: '#928374' black: '0x928374'
red: '#fb4934' red: '0x9d0006'
green: '#b8bb26' green: '0x79740e'
yellow: '#fabd2f' yellow: '0xb57614'
blue: '#83a598' blue: '0x076678'
magenta: '#d3869b' magenta: '0x8f3f71'
cyan: '#8ec07c' cyan: '0x427b58'
white: '#ebdbb2' white: '0x3c3836'
bell: bell:
animation: EaseOutExpo animation: EaseOutExpo

@ -1,6 +1,6 @@
{ {
"colorcolumn": 80, "colorcolumn": 80,
"colorscheme": "gruvbox", "colorscheme": "simple",
"fzf": true, "fzf": true,
"paste": true, "paste": true,
"pluginchannels": [ "pluginchannels": [

@ -121,6 +121,7 @@ if [ -f "$usermodmap" ]; then xmodmap "$usermodmap"; fi
xsetroot -cursor_name left_ptr & xsetroot -cursor_name left_ptr &
setxkbmap it,gb -option grp:lctrl_lwin_toggle setxkbmap it,gb -option grp:lctrl_lwin_toggle
xrandr --dpi 130 xrandr --dpi 130
xhost +local:
# Set middle mouse scrolling for ps2 trackball # Set middle mouse scrolling for ps2 trackball
xinput --set-prop 'GASIA PS2toUSB Adapter Mouse' 'libinput Scroll Method Enabled' 0, 0, 1 xinput --set-prop 'GASIA PS2toUSB Adapter Mouse' 'libinput Scroll Method Enabled' 0, 0, 1
@ -129,14 +130,22 @@ xinput --set-prop 'GASIA PS2toUSB Adapter Mouse' 'libinput Scroll Method Enabled
# LAUNCH APPLICATIONS # LAUNCH APPLICATIONS
# #
pipewire &
pipewire-pulse &
if ! pgrep -x "devmon" > /dev/null if ! pgrep -x "devmon" > /dev/null
then then
devmon & devmon &
fi fi
nitrogen --restore 2>/dev/null nitrogen --restore 2>/dev/null
# Screen power save
xset s on xset s on
xset s 600/660 xset s 600/660
# Lock on idle
xidle -delay 60 -no -program "/bin/xlock -mode rain" -timeout 300 &
# #
# START WINDOW MANAGER # START WINDOW MANAGER
# #
@ -148,5 +157,8 @@ hkd &
if [ "$(date +'%c=m')" = "12" ]; then if [ "$(date +'%c=m')" = "12" ]; then
xsnow & xsnow &
fi fi
sbl -r # Banish cursor while typing
xbanish &
sbl -r &
while true; do dwm 2> ~/.dwm.log; done while true; do dwm 2> ~/.dwm.log; done
#progman

@ -27,11 +27,17 @@ alias gd='git diff'
alias rm='rm -i' alias rm='rm -i'
alias mv='mv -i' alias mv='mv -i'
alias open='xdg-open' alias open='xdg-open'
alias vs='vpm s'
alias vi='sudo vpm i'
alias vu='sudo vpm up'
alias vrr='sudo vpm removerecursive'
alias vr='sudo vpm rm'
alias buonanotte='sudo poweroff' alias buonanotte='sudo poweroff'
alias progetti='cd $HOME/Documents/projects' alias progetti='cd $HOME/Documents/projects; ls'
alias windoze='sudo zzz -R' alias windoze='sudo zzz -R'
alias bruh='make && sudo make install && make clean' alias bruh='make -j9 && sudo make install && make clean'
alias mdl='ts youtube-dl -i -x --audio-format best --audio-quality 0 -o "%(title)s.%(ext)s"' alias mdl='ts youtube-dl -i -x --audio-format best --audio-quality 0 -o "%(title)s.%(ext)s"'
alias sudo=doas
# Colored man pages with less(1) # Colored man pages with less(1)
export LESS="--RAW-CONTROL-CHARS" export LESS="--RAW-CONTROL-CHARS"
@ -50,6 +56,7 @@ export LESS_TERMCAP_ZO=$(tput ssupm)
export LESS_TERMCAP_ZW=$(tput rsupm) export LESS_TERMCAP_ZW=$(tput rsupm)
export GROFF_NO_SGR=1 export GROFF_NO_SGR=1
export PATH="$PATH:/home/ale/.local/bin" export PATH="$PATH:/home/ale/.local/bin"
export PATH="/home/ale/Documents/projects/loonix/cross/i686-elf/bin:$PATH"
PROMPT='%(?..[%F{red}%?%f] )%F{green}%n%f:%F{blue}%2~%f %(!.#.$) ' PROMPT='%(?..[%F{red}%?%f] )%F{green}%n%f:%F{blue}%2~%f %(!.#.$) '

Loading…
Cancel
Save