Commit for a long time

This commit is contained in:
Harri Lahtinen 2025-04-16 14:54:51 +03:00
parent 5fe4806092
commit e256172478
10 changed files with 34 additions and 32 deletions

View File

@ -36,7 +36,7 @@ rewrite = true
[[item]] [[item]]
file = "~/.config/i3/config" file = "~/.config/i3/config"
template = "i3" template = "i3"
subtemplate = "custom" #subtemplate = "custom"
light = false light = false
hook = "i3-msg reload" hook = "i3-msg reload"

View File

@ -84,7 +84,7 @@ exec --no-startup-id dunst &
#Battery notify #Battery notify
exec --no-startup-id ~/.config/Scripts/i3-battery-monitor & exec --no-startup-id ~/.config/Scripts/i3-battery-monitor &
#Picom #Picom
exec --no-startup-id picom -bc --experimental-backends --dbus --config /home/hate/.config/picom/picom.conf exec --no-startup-id picom -bc --dbus --config /home/hate/.config/picom/picom.conf
#Gnome privileges #Gnome privileges
exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
#Launch Polybar where appropriate: #Launch Polybar where appropriate:

View File

@ -39,7 +39,7 @@ shadow-exclude = [
# shadow-exclude = "n:e:Notification"; # shadow-exclude = "n:e:Notification";
shadow-ignore-shaped = false; shadow-ignore-shaped = false;
# shadow-exclude-reg = "x10+0+0"; # shadow-exclude-reg = "x10+0+0";
xinerama-shadow-crop = true; crop-shadow-to-monitor = true;
############### ###############
### OPACITY ### ### OPACITY ###
@ -113,8 +113,8 @@ resize-damage = 5;
################### ###################
### GLX BACKEND ### ### GLX BACKEND ###
################### ###################
refresh-rate = 0; #refresh-rate = 0;
vsync = "true"; #vsync = "true";
glx-no-stencil = true; glx-no-stencil = true;
glx-copy-from-front = false; glx-copy-from-front = false;
#glx-use-copysubbuffermesa = true; #glx-use-copysubbuffermesa = true;

View File

@ -1,18 +1,18 @@
[colors] [colors]
background = #00000000 background = #00000000
base00 = ee2E3440 base00 = ee2e3440
base01 = 3B4252 base01 = 3b4252
base02 = 434C5E base02 = 434c5e
base03 = 4C566A base03 = 4c566a
base04 = D8DEE9 base04 = d8dee9
base05 = E5E9F0 base05 = e5e9f0
base06 = ECEFF4 base06 = eceff4
base07 = 8FBCBB base07 = 8fbcbb
base08 = BF616A base08 = bf616a
base09 = D08770 base09 = d08770
base0A = EBCB8B base0A = ebcb8b
base0B = A3BE8C base0B = a3be8c
base0C = 88C0D0 base0C = 88c0d0
base0D = 81A1C1 base0D = 81a1c1
base0E = B48EAD base0E = b48ead
base0F = 5E81AC base0F = 5e81ac

View File

@ -4,7 +4,7 @@ command -v jq >/dev/null 2>&1 || { echo >&2 "Program 'jq' required but it is not
command -v wget >/dev/null 2>&1 || { echo >&2 "Program 'wget' required but is not installed. Aborting."; exit 1; } command -v wget >/dev/null 2>&1 || { echo >&2 "Program 'wget' required but is not installed. Aborting."; exit 1; }
APIKEY="99e2d54517287c6de1e9db99db2fdc84" APIKEY="99e2d54517287c6de1e9db99db2fdc84"
CITY_ID="659181" # customise this for your city CITY_ID="644450" # customise this for your city
URL="http://api.openweathermap.org/data/2.5/weather?id=${CITY_ID}&units=metric&APPID=${APIKEY}" URL="http://api.openweathermap.org/data/2.5/weather?id=${CITY_ID}&units=metric&APPID=${APIKEY}"
WEATHER_RESPONSE=$(wget -qO- "${URL}") WEATHER_RESPONSE=$(wget -qO- "${URL}")

View File

@ -107,6 +107,7 @@ ext js = node -- "$1"
ext sh = sh -- "$1" ext sh = sh -- "$1"
ext php = php -- "$1" ext php = php -- "$1"
ext dart = dart run -- "$1" ext dart = dart run -- "$1"
ext lua = nvim "$@"
#-------------------------------------------- #--------------------------------------------
# Audio without X # Audio without X

View File

@ -10,7 +10,7 @@ export VAAPI_MPEG4_ENABLED=true
# Common apps # Common apps
export ZSH=/home/hate/.oh-my-zsh export ZSH=/home/hate/.oh-my-zsh
export EDITOR=nvim export EDITOR=nvim
export BROWSER=/usr/bin/google-chrome-stable export BROWSER=/usr/bin/chromium
export GNUPGHOME="~/.gnupg" export GNUPGHOME="~/.gnupg"
export SSH_KEY_PATH="~/.ssh/id_rsa" export SSH_KEY_PATH="~/.ssh/id_rsa"
export TERMINAL="kitty" export TERMINAL="kitty"

View File

@ -1,4 +1,5 @@
#My aliases #My aliases
alias update="paru -Syu --skipreview"
alias reload="source ~/.zshrc" alias reload="source ~/.zshrc"
alias torrent="transmission-remote -n 'transmission:transmission' -a" alias torrent="transmission-remote -n 'transmission:transmission' -a"
alias mirror="sudo reflector --protocol https --latest 50 --number 20 --sort rate --save /etc/pacman.d/mirrorlist" alias mirror="sudo reflector --protocol https --latest 50 --number 20 --sort rate --save /etc/pacman.d/mirrorlist"
@ -30,7 +31,7 @@ alias di='kitty +kitten diff'
alias kitheme="cd ~/.config/kitty/themes && fzf --preview 'head -n 40 {} && kitty @ set-colors -a -c {}'; cd -" alias kitheme="cd ~/.config/kitty/themes && fzf --preview 'head -n 40 {} && kitty @ set-colors -a -c {}'; cd -"
alias yca="yadm commit -v -a" alias yca="yadm commit -v -a"
alias yp="yadm push" alias yp="yadm push"
alias azure='ssh hate@98.71.34.234'
#Check the weather: #Check the weather:
weath() { curl wttr.in/Hameenlinna ;} weath() { curl wttr.in/Hameenlinna ;}

View File

@ -1,3 +1,4 @@
7zip
acpi acpi
acpi_call acpi_call
alacritty alacritty
@ -54,6 +55,7 @@ groff
gtop gtop
gucharmap gucharmap
gvfs-mtp gvfs-mtp
gvfs-smb
gzip gzip
helm helm
htop htop
@ -91,7 +93,6 @@ make
man-db man-db
man-pages man-pages
mdadm mdadm
mlocate
mopidy mopidy
mpc mpc
mpd mpd
@ -107,13 +108,13 @@ networkmanager
networkmanager-openvpn networkmanager-openvpn
newsboat newsboat
nfs-utils nfs-utils
nmap
noto-fonts noto-fonts
noto-fonts-emoji noto-fonts-emoji
npm npm
ntp ntp
obsidian obsidian
openvpn openvpn
p7zip
pacman pacman
pacman-contrib pacman-contrib
papirus-icon-theme papirus-icon-theme
@ -125,6 +126,7 @@ pcmanfm-gtk3
perl perl
pipewire-pulse pipewire-pulse
pkgconf pkgconf
plocate
polkit-gnome polkit-gnome
polybar polybar
powerline-fonts powerline-fonts
@ -136,10 +138,10 @@ python-mpd2
python-pip python-pip
python-pynvim python-pynvim
python-pyqt5 python-pyqt5
python-pywal
python-setuptools python-setuptools
python-urwid python-urwid
reflector reflector
reiserfsprogs
ripgrep ripgrep
rofi rofi
rpmextract rpmextract

View File

@ -23,23 +23,21 @@ libinput-gestures
libunarr-git libunarr-git
light-git light-git
lightdm-mini-greeter lightdm-mini-greeter
mailspring
mcomix mcomix
networkmanager-dispatcher-chrony networkmanager-dispatcher-chrony
networkmanager-dmenu-git networkmanager-dmenu-git
nordvpn-bin nordvpn-bin
pacback pacback
pbincli paru
picom-git picom-git
powerline-console-fonts powerline-console-fonts
pywal-git
qt5-styleplugins qt5-styleplugins
ranger-git ranger-git
redshift-minimal redshift-minimal
rxfetch reiserfsprogs
systemd-boot-pacman-hook systemd-boot-pacman-hook
ttf-weather-icons ttf-weather-icons
warp-terminal
wpgtk-git wpgtk-git
yad-git yad-git
yay-bin
youtube-viewer youtube-viewer