Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1e99c5133f | |||
| 546aefe946 | |||
| 67f91626b9 | |||
| cf2bf87146 | |||
| ae7cc50cac | |||
| 158fa4ce30 | |||
| 8ded1fd74a | |||
| 8d716fffcb | |||
| b177001197 | |||
| 1dd73e4d87 | |||
| 4870752e55 | |||
| bbb774056c | |||
| c7947cfdfa | |||
| 1a39ddde49 | |||
| f0e13819fb | |||
| 1b967dbbee | |||
| 34a9d0352f | |||
| bcb4d74b43 | |||
| 0bd2445ab1 |
@@ -1 +0,0 @@
|
||||
nvim/lazy-lock.json
|
||||
@@ -1,115 +0,0 @@
|
||||
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||
# Initialization code that may require console input (password prompts, [y/n]
|
||||
# confirmations, etc.) must go above this block; everything else may go below.
|
||||
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
||||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
|
||||
# Lines configured by zsh-newuser-install
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=1000
|
||||
SAVEHIST=1000
|
||||
# End of lines configured by zsh-newuser-install
|
||||
# The following lines were added by compinstall
|
||||
zstyle :compinstall filename '/home/trianta/.zshrc'
|
||||
|
||||
autoload -Uz compinit
|
||||
|
||||
compinit
|
||||
# End of lines added by compinstall
|
||||
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
|
||||
|
||||
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
|
||||
# Alias
|
||||
alias -g vi="nvim"
|
||||
alias -g vim="nvim"
|
||||
alias -g cmakegd="cmake -B build -S . -DCMAKE_BUILD_TYPE:STRING=Debug"
|
||||
alias -g cmakeg="cmake -B build -S ."
|
||||
alias -g cmakeb="cmake --build build -j $(nproc)"
|
||||
alias -g pcore="taskset -c 1-7"
|
||||
alias -g a="notify"
|
||||
alias -g af="taskset -c 0-19 notify"
|
||||
alias -g tm="tmux new -A -s"
|
||||
|
||||
# Plugins from AUR
|
||||
source ~/tools/powerlevel10k/powerlevel10k.zsh-theme
|
||||
source ~/tools/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
source ~/tools/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
source ~/tools/zsh-history-substring-search/zsh-history-substring-search.zsh
|
||||
|
||||
# Enable color support
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias l='ls -la --color -h --group-directories-first'
|
||||
alias ls='ls --color -h --group-directories-first'
|
||||
alias dir='dir --color=auto'
|
||||
alias vdir='vdir --color=auto'
|
||||
alias grep='grep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
fi
|
||||
|
||||
# Hyprland login
|
||||
alias hy='Hyprland'
|
||||
|
||||
# Export ~/.config path
|
||||
export XDG_CONFIG_HOME="$HOME/.config"
|
||||
|
||||
# Created by `pipx` on 2023-10-16 08:33:15
|
||||
export PATH="$PATH:/home/trianta/.local/bin"
|
||||
|
||||
# Little neat settings
|
||||
set colored-stats On
|
||||
set completion-ignore-case On
|
||||
set completion-prefix-display-length 3
|
||||
set mark-symlinked-directories On
|
||||
set show-all-if-ambiguous On
|
||||
set show-all-if-unmodified On
|
||||
set visible-stats On
|
||||
|
||||
# Keyboard binds
|
||||
|
||||
# common
|
||||
bindkey "^L" forward-word
|
||||
bindkey "^[[H" beginning-of-line
|
||||
bindkey "^[[F" end-of-line
|
||||
bindkey "^[[3~" delete-char
|
||||
|
||||
# Alacritty
|
||||
bindkey "^B" beginning-of-line
|
||||
bindkey "^E" end-of-line
|
||||
bindkey ";3D" backward-word
|
||||
bindkey ";3C" forward-word
|
||||
bindkey ";5D" backward-word
|
||||
bindkey ";5C" forward-word
|
||||
bindkey "^H" backward-word
|
||||
bindkey '^K' history-substring-search-up
|
||||
bindkey '^J' history-substring-search-down
|
||||
|
||||
# cool-retro-term
|
||||
#bindkey '^K' history-substring-search-up
|
||||
#bindkey '^J' history-substring-search-down
|
||||
#bindkey '^H' backward-delete-char
|
||||
#bindkey '^B' backward-word
|
||||
#bindkey '^W' forward-word
|
||||
|
||||
# Set default editor
|
||||
export EDITOR="nvim"
|
||||
|
||||
# Global CMake clangd fix
|
||||
export CMAKE_EXPORT_COMPILE_COMMANDS=1
|
||||
|
||||
if [[ "$(tty)" == /dev/tty1 ]]; then
|
||||
echo "Sleeping 3 seconds..." && sleep 3 && mount -a && Hyprland
|
||||
fi
|
||||
|
||||
$(&>/dev/null pw-play --volume=2.0 ~/.alert/ready.mp3 &)
|
||||
|
||||
## [Completion]
|
||||
## Completion scripts setup. Remove the following line to uninstall
|
||||
[[ -f /home/trianta/.config/.dart-cli-completion/zsh-config.zsh ]] && . /home/trianta/.config/.dart-cli-completion/zsh-config.zsh || true
|
||||
## [/Completion]
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
|
||||
[cursor.style]
|
||||
shape = "Underline"
|
||||
|
||||
[env]
|
||||
TERM = "xterm-256color"
|
||||
|
||||
[font]
|
||||
size = 13
|
||||
|
||||
[colors]
|
||||
footer_bar = { foreground = "#181818", background = "#d8d8d8" }
|
||||
|
||||
[font.normal]
|
||||
family = "HackNerdFont"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageUp"
|
||||
key = "PageUp"
|
||||
mode = "~Alt"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollPageDown"
|
||||
key = "PageDown"
|
||||
mode = "~Alt"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToTop"
|
||||
key = "Home"
|
||||
mode = "~Alt"
|
||||
mods = "Shift"
|
||||
|
||||
[[keyboard.bindings]]
|
||||
action = "ScrollToBottom"
|
||||
key = "End"
|
||||
mode = "~Alt"
|
||||
mods = "Shift"
|
||||
|
||||
[terminal.shell]
|
||||
args = ["--login"]
|
||||
program = "/bin/zsh"
|
||||
|
||||
[window]
|
||||
opacity = 0.5
|
||||
padding = {x = 25, y = 25}
|
||||
|
||||
[general]
|
||||
import = ["/home/trianta/.config/alacritty/catppuccin/catppuccin-frappe.toml"]
|
||||
|
||||
[terminal]
|
||||
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = "#303446"
|
||||
foreground = "#C6D0F5"
|
||||
dim_foreground = "#C6D0F5"
|
||||
bright_foreground = "#C6D0F5"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#303446"
|
||||
cursor = "#F2D5CF"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#303446"
|
||||
cursor = "#BABBF1"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#303446"
|
||||
background = "#A5ADCE"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#303446"
|
||||
background = "#A6D189"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#303446"
|
||||
background = "#A5ADCE"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#303446"
|
||||
background = "#E5C890"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#303446"
|
||||
background = "#A5ADCE"
|
||||
|
||||
[colors.selection]
|
||||
text = "#303446"
|
||||
background = "#F2D5CF"
|
||||
|
||||
[colors.normal]
|
||||
black = "#51576D"
|
||||
red = "#E78284"
|
||||
green = "#A6D189"
|
||||
yellow = "#E5C890"
|
||||
blue = "#8CAAEE"
|
||||
magenta = "#F4B8E4"
|
||||
cyan = "#81C8BE"
|
||||
white = "#B5BFE2"
|
||||
|
||||
[colors.bright]
|
||||
black = "#626880"
|
||||
red = "#E78284"
|
||||
green = "#A6D189"
|
||||
yellow = "#E5C890"
|
||||
blue = "#8CAAEE"
|
||||
magenta = "#F4B8E4"
|
||||
cyan = "#81C8BE"
|
||||
white = "#A5ADCE"
|
||||
|
||||
[colors.dim]
|
||||
black = "#51576D"
|
||||
red = "#E78284"
|
||||
green = "#A6D189"
|
||||
yellow = "#E5C890"
|
||||
blue = "#8CAAEE"
|
||||
magenta = "#F4B8E4"
|
||||
cyan = "#81C8BE"
|
||||
white = "#B5BFE2"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = "#EF9F76"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = "#F2D5CF"
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = "#EFF1F5"
|
||||
foreground = "#4C4F69"
|
||||
dim_foreground = "#4C4F69"
|
||||
bright_foreground = "#4C4F69"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#EFF1F5"
|
||||
cursor = "#DC8A78"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#EFF1F5"
|
||||
cursor = "#7287FD"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#40A02B"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#DF8E1D"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#EFF1F5"
|
||||
background = "#6C6F85"
|
||||
|
||||
[colors.selection]
|
||||
text = "#EFF1F5"
|
||||
background = "#DC8A78"
|
||||
|
||||
[colors.normal]
|
||||
black = "#5C5F77"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#ACB0BE"
|
||||
|
||||
[colors.bright]
|
||||
black = "#6C6F85"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#BCC0CC"
|
||||
|
||||
[colors.dim]
|
||||
black = "#5C5F77"
|
||||
red = "#D20F39"
|
||||
green = "#40A02B"
|
||||
yellow = "#DF8E1D"
|
||||
blue = "#1E66F5"
|
||||
magenta = "#EA76CB"
|
||||
cyan = "#179299"
|
||||
white = "#ACB0BE"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = "#FE640B"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = "#DC8A78"
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = "#24273A"
|
||||
foreground = "#CAD3F5"
|
||||
dim_foreground = "#CAD3F5"
|
||||
bright_foreground = "#CAD3F5"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#24273A"
|
||||
cursor = "#F4DBD6"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#24273A"
|
||||
cursor = "#B7BDF8"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#24273A"
|
||||
background = "#A5ADCB"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#24273A"
|
||||
background = "#A6DA95"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#24273A"
|
||||
background = "#A5ADCB"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#24273A"
|
||||
background = "#EED49F"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#24273A"
|
||||
background = "#A5ADCB"
|
||||
|
||||
[colors.selection]
|
||||
text = "#24273A"
|
||||
background = "#F4DBD6"
|
||||
|
||||
[colors.normal]
|
||||
black = "#494D64"
|
||||
red = "#ED8796"
|
||||
green = "#A6DA95"
|
||||
yellow = "#EED49F"
|
||||
blue = "#8AADF4"
|
||||
magenta = "#F5BDE6"
|
||||
cyan = "#8BD5CA"
|
||||
white = "#B8C0E0"
|
||||
|
||||
[colors.bright]
|
||||
black = "#5B6078"
|
||||
red = "#ED8796"
|
||||
green = "#A6DA95"
|
||||
yellow = "#EED49F"
|
||||
blue = "#8AADF4"
|
||||
magenta = "#F5BDE6"
|
||||
cyan = "#8BD5CA"
|
||||
white = "#A5ADCB"
|
||||
|
||||
[colors.dim]
|
||||
black = "#494D64"
|
||||
red = "#ED8796"
|
||||
green = "#A6DA95"
|
||||
yellow = "#EED49F"
|
||||
blue = "#8AADF4"
|
||||
magenta = "#F5BDE6"
|
||||
cyan = "#8BD5CA"
|
||||
white = "#B8C0E0"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = "#F5A97F"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = "#F4DBD6"
|
||||
@@ -0,0 +1,75 @@
|
||||
[colors.primary]
|
||||
background = "#1E1E2E"
|
||||
foreground = "#CDD6F4"
|
||||
dim_foreground = "#CDD6F4"
|
||||
bright_foreground = "#CDD6F4"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#1E1E2E"
|
||||
cursor = "#F5E0DC"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#1E1E2E"
|
||||
cursor = "#B4BEFE"
|
||||
|
||||
[colors.search.matches]
|
||||
foreground = "#1E1E2E"
|
||||
background = "#A6ADC8"
|
||||
|
||||
[colors.search.focused_match]
|
||||
foreground = "#1E1E2E"
|
||||
background = "#A6E3A1"
|
||||
|
||||
[colors.footer_bar]
|
||||
foreground = "#1E1E2E"
|
||||
background = "#A6ADC8"
|
||||
|
||||
[colors.hints.start]
|
||||
foreground = "#1E1E2E"
|
||||
background = "#F9E2AF"
|
||||
|
||||
[colors.hints.end]
|
||||
foreground = "#1E1E2E"
|
||||
background = "#A6ADC8"
|
||||
|
||||
[colors.selection]
|
||||
text = "#1E1E2E"
|
||||
background = "#F5E0DC"
|
||||
|
||||
[colors.normal]
|
||||
black = "#45475A"
|
||||
red = "#F38BA8"
|
||||
green = "#A6E3A1"
|
||||
yellow = "#F9E2AF"
|
||||
blue = "#89B4FA"
|
||||
magenta = "#F5C2E7"
|
||||
cyan = "#94E2D5"
|
||||
white = "#BAC2DE"
|
||||
|
||||
[colors.bright]
|
||||
black = "#585B70"
|
||||
red = "#F38BA8"
|
||||
green = "#A6E3A1"
|
||||
yellow = "#F9E2AF"
|
||||
blue = "#89B4FA"
|
||||
magenta = "#F5C2E7"
|
||||
cyan = "#94E2D5"
|
||||
white = "#A6ADC8"
|
||||
|
||||
[colors.dim]
|
||||
black = "#45475A"
|
||||
red = "#F38BA8"
|
||||
green = "#A6E3A1"
|
||||
yellow = "#F9E2AF"
|
||||
blue = "#89B4FA"
|
||||
magenta = "#F5C2E7"
|
||||
cyan = "#94E2D5"
|
||||
white = "#BAC2DE"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 16
|
||||
color = "#FAB387"
|
||||
|
||||
[[colors.indexed_colors]]
|
||||
index = 17
|
||||
color = "#F5E0DC"
|
||||
@@ -1,31 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "Setting up git user..."
|
||||
git config --global user.name "trianta"
|
||||
git config --global user.email "gregcraw2001@gmail.com"
|
||||
git config --global gpg.format ssh
|
||||
git config --global user.signingkey ~/.ssh/id_ed25519.pub
|
||||
git config --global pull.rebase true
|
||||
|
||||
|
||||
echo "Getting tools for environment..."
|
||||
if test -d ~/tools;
|
||||
then
|
||||
mkdir ~/tools;
|
||||
fi
|
||||
git clone --depth 1 https://github.com/zsh-users/zsh-autosuggestions.git ~/tools/zsh-autosuggestions
|
||||
git clone --depth 1 https://github.com/zsh-users/zsh-history-substring-search.git ~/tools/zsh-history-substring-search
|
||||
git clone --depth 1 https://github.com/zsh-users/zsh-syntax-highlighting.git ~/tools/zsh-syntax-highlighting
|
||||
git clone --depth 1 https://github.com/romkatv/powerlevel10k.git ~/tools/powerlevel10k
|
||||
|
||||
echo "Syncing user with nvim..."
|
||||
rsync --delete --recursive $(dirname "$0")/nvim/ ~/.config/nvim
|
||||
|
||||
echo "Syncing user with tmux..."
|
||||
echo " Note: prefix + I for tmux setup"
|
||||
mkdir -p ~/tmux
|
||||
rsync --recursive $(dirname "$0")/tmux/tmux.conf ~/.config/tmux/tmux.conf
|
||||
|
||||
rsync $(dirname "$0")/.zshrc ~/.zshrc
|
||||
|
||||
echo "Syncing user with alacritty..."
|
||||
rsync --recursive $(dirname "$0")/alacritty/ ~/.config/alacritty
|
||||
echo "Syncing user with hypr..."
|
||||
rsync --recursive $(dirname "$0")/hypr/ ~/.config/hypr
|
||||
echo "Syncing user with waybar..."
|
||||
rsync --recursive $(dirname "$0")/waybar/ ~/.config/waybar
|
||||
echo "Syncing complete!"
|
||||
|
||||
Executable
+37
@@ -0,0 +1,37 @@
|
||||
# foreground
|
||||
$fg = ebdbb2
|
||||
$fg0 = fbf1c7
|
||||
$fg1 = ebdbb2
|
||||
$fg2 = d5c4a1
|
||||
$fg3 = bdae93
|
||||
$fg4 = a89984
|
||||
|
||||
# background
|
||||
$bg = 282828
|
||||
$bg0_h = 1d2021
|
||||
$bg0_s = 32302f
|
||||
$bg1 = 3c3836
|
||||
$bg2 = 504945
|
||||
$bg3 = 665c54
|
||||
$bg4 = 7c6f64
|
||||
|
||||
# colors
|
||||
$gray = a89984
|
||||
$red = cc241d
|
||||
$green = 98971a
|
||||
$yellow = d79921
|
||||
$blue = 458588
|
||||
$purple = b16286
|
||||
$aqua = 689d6a
|
||||
$orange = d65d0e
|
||||
$peach = fe640b
|
||||
|
||||
# alternates
|
||||
$alt_gray = 928374
|
||||
$alt_red = fb4934
|
||||
$alt_green = b8bb26
|
||||
$alt_yellow = fabd2f
|
||||
$alt_blue = 83a598
|
||||
$alt_purple = d3869b
|
||||
$alt_aqua = 8ec07c
|
||||
$alt_orange = fe8019
|
||||
Executable
+444
@@ -0,0 +1,444 @@
|
||||
source = ~/.config/hypr/colorscheme.conf # Catppuccin colorscheme
|
||||
|
||||
# < Start Section >
|
||||
# monitors
|
||||
|
||||
monitorv2 {
|
||||
output = eDP-1
|
||||
mode = highrr
|
||||
position = 0x0 # alt: 0x0
|
||||
bitdepth = 8
|
||||
cm = edid
|
||||
}
|
||||
|
||||
# HDMI port
|
||||
monitorv2 {
|
||||
output =
|
||||
mode = highrr
|
||||
position = 1920x0 # alt: 0x0
|
||||
scale = 1.00
|
||||
bitdepth = 8
|
||||
cm = edid
|
||||
}
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# environment variables
|
||||
|
||||
env = XDG_CURRENT_DESKTOP,Hyprland
|
||||
env = XDG_SESSION_TYPE,wayland
|
||||
env = XDG_SESSION_DESKTOP,Hyprland
|
||||
env = MOZ_ENABLE_WAYLAND,1
|
||||
env = HYPRCURSOR_THEME, volantes
|
||||
env = HYPRCURSOR_SIZE, 30
|
||||
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
||||
env = QT_QPA_PLATFORM,wayland;xcb
|
||||
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
||||
env = QT_QPA_PLATFORMTHEME,qt5ct
|
||||
|
||||
#env = HYPRLAND_TRACE,1
|
||||
#env = AQ_TRACE,1
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# startup applications
|
||||
|
||||
# environment launches
|
||||
exec-once = ~/.config/hypr/scripts/resetxdgportal.sh # reset XDPH for screenshare
|
||||
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP HYPRLAND_INSTANCE_SIGNATURE
|
||||
exec-once = dbus-update-activation-environment --systemd --all
|
||||
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP
|
||||
exec-once = /usr/lib/polkit-kde-authentication-agent-1 # authentication dialogue for GUI apps
|
||||
exec-once = gsettings set org.gnome.desktop.interface gtk-theme 'Catppuccin-Mocha'
|
||||
exec-once = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
|
||||
exec-once = sleep 1 && hyprpm reload
|
||||
#exec-once = wayvnc --output=DP-3 0.0.0.0
|
||||
|
||||
# xrandr settings
|
||||
#exec-once = ~/.config/hypr/scripts/xrandr.sh
|
||||
|
||||
# background applications
|
||||
exec-once = waybar -c ~/.config/waybar/config
|
||||
exec-once = dunst
|
||||
exec-once = swww-daemon
|
||||
exec-once = syncthing --no-browser
|
||||
#exec-once = xwaylandvideobridge
|
||||
#exec-once = pulsemeeter
|
||||
|
||||
# main applications
|
||||
exec-once = thunderbird
|
||||
#exec-once = obs
|
||||
#exec-once = vesktop --ozone-platform-hint=auto --enable-webrtc-pipewire-capturer --enable-features=WaylandWindowDecorations
|
||||
exec-once = commet
|
||||
#exec-once = spotify
|
||||
#exec-once = dopamine
|
||||
exec-once = alacritty
|
||||
exec-once = floorp
|
||||
exec-once = env JAVA_HOME=/usr/lib/jvm/java-17-openjdk bolt > /tmp/bolt-launcher.log 2>&1
|
||||
|
||||
# obsidian planner
|
||||
exec-once = ~/sync/obsidian/Trinote/create-week.sh
|
||||
|
||||
# completion alert
|
||||
# exec-once = sleep 5 && pw-play --volume=2.0 ~/.alert/finished.mp3
|
||||
|
||||
# first time lock
|
||||
exec-once = hyprlock
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# workspace rules
|
||||
|
||||
# smart gaps
|
||||
#workspace = w[tv1], gapsout:25 725 25 725, gapsin:0
|
||||
workspace = w[tv1] r[4-5], gapsout:0 0 0 0, gapsin:0
|
||||
|
||||
# gaps numbers (top, right, bottom, left)
|
||||
# Workspaces swapped for ease of use
|
||||
workspace = 1, monitor:eDP-1, persistent:true, default:true
|
||||
workspace = 2, monitor:eDP-1, persistent:true
|
||||
workspace = 3, monitor:eDP-1, persistent:true
|
||||
workspace = 4, monitor:eDP-1, persistent:true
|
||||
workspace = 5, monitor:HDMI-A-1, persistent:true, gapsout:0
|
||||
workspace = 6, monitor:eDP-1, persistent:true
|
||||
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# variables
|
||||
|
||||
|
||||
general {
|
||||
gaps_in = 5
|
||||
gaps_out = 20
|
||||
border_size = 3
|
||||
#col.active_border = rgb($yellow)
|
||||
col.active_border = rgb($fg)
|
||||
col.inactive_border = rgb($bg)
|
||||
layout = dwindle
|
||||
resize_on_border = false
|
||||
allow_tearing = false
|
||||
}
|
||||
|
||||
decoration {
|
||||
rounding = 10
|
||||
rounding_power = 2
|
||||
|
||||
shadow {
|
||||
enabled = true
|
||||
range = 32
|
||||
render_power = 2
|
||||
color = rgba(00000050)
|
||||
}
|
||||
dim_special = 0.3
|
||||
fullscreen_opacity = 1.0
|
||||
|
||||
blur {
|
||||
enabled = true
|
||||
special = true
|
||||
size = 3
|
||||
passes = 4
|
||||
new_optimizations = true
|
||||
ignore_opacity = true
|
||||
xray = true
|
||||
vibrancy = 0.1696
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = true
|
||||
|
||||
bezier = easeOutQuint, 0.23, 1, 0.32, 1
|
||||
bezier = easeInOutCubic, 0.65, 0.05, 0.36, 1
|
||||
bezier = linear, 0, 0, 1, 1
|
||||
bezier = almostLinear, 0.5, 0.5, 0.75, 1
|
||||
bezier = quick, 0.15, 0, 0.1, 1
|
||||
|
||||
animation = global, 1, 10, default
|
||||
animation = border, 1, 5.39, easeOutQuint
|
||||
animation = windows, 1, 4.79, easeOutQuint
|
||||
animation = windowsIn, 1, 4.1, easeOutQuint, popin 87%
|
||||
animation = windowsOut, 1, 1.49, linear, popin 87%
|
||||
animation = fadeIn, 1, 1.73, almostLinear
|
||||
animation = fadeOut, 1, 1.46, almostLinear
|
||||
animation = fade, 1, 3.03, quick
|
||||
animation = layers, 1, 3.81, easeOutQuint
|
||||
animation = layersIn, 1, 4, easeOutQuint, fade
|
||||
animation = layersOut, 1, 1.5, linear, fade
|
||||
animation = fadeLayersIn, 1, 1.79, almostLinear
|
||||
animation = fadeLayersOut, 1, 1.39, almostLinear
|
||||
animation = workspaces, 1, 1.94, almostLinear, fade
|
||||
animation = workspacesIn, 1, 1.21, almostLinear, fade
|
||||
animation = workspacesOut, 1, 1.94, almostLinear, fade
|
||||
animation = zoomFactor, 1, 7, quick
|
||||
}
|
||||
|
||||
input {
|
||||
kb_layout = us
|
||||
kb_options = caps:escape
|
||||
follow_mouse = 2
|
||||
mouse_refocus = true
|
||||
force_no_accel = 1
|
||||
touchpad {
|
||||
natural_scroll = true
|
||||
}
|
||||
}
|
||||
|
||||
group {
|
||||
col.border_active = rgba(ca9ee6ff) rgba(f2d5cfff) 45deg
|
||||
col.border_inactive = rgba(b4befecc) rgba(6c7086cc) 45deg
|
||||
col.border_locked_active = rgba(ca9ee6ff) rgba(f2d5cfff) 45deg
|
||||
col.border_locked_inactive = rgba(b4befecc) rgba(6c7086cc) 45deg
|
||||
}
|
||||
|
||||
misc {
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
force_default_wallpaper = 0
|
||||
vrr = 1
|
||||
vfr = true
|
||||
middle_click_paste = false
|
||||
render_unfocused_fps = 15
|
||||
}
|
||||
|
||||
xwayland {
|
||||
enabled = true
|
||||
use_nearest_neighbor = true
|
||||
force_zero_scaling = false
|
||||
}
|
||||
|
||||
cursor {
|
||||
inactive_timeout = 2
|
||||
no_warps = false
|
||||
persistent_warps = true
|
||||
default_monitor = eDP-1
|
||||
warp_on_change_workspace = false
|
||||
}
|
||||
|
||||
debug {
|
||||
disable_logs = true
|
||||
#overlay
|
||||
full_cm_proto = true
|
||||
}
|
||||
|
||||
render {
|
||||
new_render_scheduling = true
|
||||
direct_scanout = true
|
||||
}
|
||||
|
||||
# Disable touchscreen
|
||||
device {
|
||||
name = gxtp7386:00-27c6:011a
|
||||
enabled = false
|
||||
}
|
||||
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# master layout
|
||||
|
||||
master {
|
||||
new_status = master
|
||||
}
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# dwindle layout
|
||||
|
||||
dwindle {
|
||||
pseudotile = true
|
||||
preserve_split = true
|
||||
smart_resizing = true
|
||||
}
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# window rules
|
||||
|
||||
# core
|
||||
windowrule {
|
||||
name = globals
|
||||
match:class = ^(.*)$
|
||||
suppress_event = maximize fullscreen
|
||||
render_unfocused = true
|
||||
opacity = 0.75 0.75
|
||||
pseudo = false
|
||||
}
|
||||
|
||||
windowrule = match:workspace 1, float true
|
||||
windowrule = match:workspace 2, float true
|
||||
windowrule = match:class ^(qt5ct)$, float true
|
||||
windowrule = match:class ^(nwg-look)$, float true
|
||||
windowrule = match:class ^(pavucontrol)$, float true
|
||||
windowrule = match:class ^(org.kde.polkit-kde-authentication-agent-1)$, float true
|
||||
windowrule = match:class ^(org.speedcrunch.speedcrunch)$, float true
|
||||
|
||||
# main
|
||||
#windowrule = match:class ^(discord)$, workspace 1 silent
|
||||
#windowrule = match:class ^(vesktop)$, workspace 1 silent
|
||||
windowrule = match:class ^(chat.commet.commetapp)$, workspace 1 silent
|
||||
windowrule = match:class ^(thunderbird)$, workspace 1 silent
|
||||
windowrule = match:class ^(Dopamine)$, workspace 1 silent
|
||||
windowrule = match:class ^(spotify)$, workspace 1 silent
|
||||
windowrule = match:class ^(steam)$, workspace 6 silent
|
||||
|
||||
# workspace 2 group
|
||||
windowrule = match:class ^(floorp)$, workspace 3 silent
|
||||
windowrule = match:class ^(floorp)$, tile true
|
||||
windowrule = match:class ^(Alacritty)$, workspace 2 silent
|
||||
windowrule = match:class ^(Alacritty)$, tile true
|
||||
windowrule = match:class ^(net-runelite-client-RuneLite)$, opacity 1.00 override 1.00 override
|
||||
|
||||
# tag games
|
||||
windowrule = match:xdg_tag proton-game, tag +game
|
||||
windowrule = match:title ^(Warframe)$, tag +game
|
||||
windowrule = match:class ^(org.prismlauncher.PrismLauncher)$, tag +game
|
||||
windowrule = match:class ^(Minecraft.*)$, tag +game
|
||||
windowrule = match:class ^(steam_app_.*)$, tag +game
|
||||
windowrule = match:class ^(steam_proton)$, tag +game
|
||||
windowrule = match:class ^(cstrike_linux64)$, tag +game
|
||||
windowrule = match:class ^(dota2)$, tag +game
|
||||
windowrule = match:class ^(gamescope)$, tag +game
|
||||
windowrule = match:class ^(wowclassic.exe)$, tag +game
|
||||
windowrule = match:title ^(World of Warcraft)$, tag +game
|
||||
windowrule = match:class ^(RuneScape)$, tag +game
|
||||
#windowrule = match:class ^(bolt.*)$, tag +game
|
||||
windowrule = match:class ^(Minecraft.*)$, tag +game
|
||||
#windowrule = match:class ^(net-runelite-client-RuneLite)$, tag +game
|
||||
# Runelite opacity likes to skip after login
|
||||
windowrule = match:class ^(net-runelite-client-RuneLite)$, opacity 1.00 override 1.00 override
|
||||
|
||||
windowrule {
|
||||
name = games
|
||||
match:tag = game
|
||||
workspace = 4 silent
|
||||
opacity = 1.00 override 1.00 override
|
||||
float = true
|
||||
no_initial_focus = true
|
||||
suppress_event = maximize
|
||||
}
|
||||
|
||||
# layer rules
|
||||
layerrule = match:namespace waybar, blur true
|
||||
layerrule = match:namespace waybar, ignore_alpha 0
|
||||
|
||||
# xwaylandvideobridge
|
||||
windowrule = match:class ^(xwaylandvideobridge)$, opacity 0.0 override
|
||||
windowrule = match:class ^(xwaylandvideobridge)$, no_anim true
|
||||
windowrule = match:class ^(xwaylandvideobridge)$, no_initial_focus true
|
||||
windowrule = match:class ^(xwaylandvideobridge)$, max_size 1 1
|
||||
windowrule = match:class ^(xwaylandvideobridge)$, no_blur true
|
||||
|
||||
# < End Section >
|
||||
|
||||
|
||||
|
||||
# < Start Section >
|
||||
# keybinds
|
||||
|
||||
# main modifier
|
||||
$mainMod = SUPER
|
||||
|
||||
# passthrough
|
||||
#bind = , mouse:275, pass, class:^(discord)$
|
||||
#bind = , mouse:275, sendshortcut, ALT, V, class:^(vesktop)$
|
||||
#bind = SHIFT, mouse:275, sendshortcut, ALT, V, class:^(vesktop)$
|
||||
|
||||
# core binds
|
||||
bind = $mainMod SHIFT, Q, killactive
|
||||
bind = $mainMod SHIFT, M, exit
|
||||
bind = $mainMod, SPACE, togglefloating
|
||||
bind = $mainMod, C, centerwindow
|
||||
bind = $mainMod, F, fullscreen
|
||||
bind = $mainMod SHIFT, L, exec, hyprlock
|
||||
bind = $mainMod $CONTROL, ESCAPE, exec, killall waybar || waybar -c ~/.config/waybar/config # toggle waybar
|
||||
|
||||
# main application shortcuts
|
||||
bind = $mainMod, RETURN, exec, alacritty
|
||||
bind = $mainMod SHIFT, S, exec, grim -g "$(slurp)" - | wl-copy
|
||||
bind = $mainMod SHIFT, 7, exec, taskset -c 1-7 prismlauncher
|
||||
bind = $mainMod, S, exec, pkill -x rofi || rofi -show drun
|
||||
bind = $mainMod, 9, exec, taskset -c 1-7 steam
|
||||
bind = $mainMod, 0, exec, JAVA_HOME=/usr/lib/jvm/java-17-openjdk bolt --ozone-platform=wayland > /tmp/bolt-launcher.log 2>&1
|
||||
|
||||
# generic audio control
|
||||
binde = , XF86AudioPlay, exec, playerctl play-pause
|
||||
binde = , XF86AudioStop, exec, playerctl stop
|
||||
binde = , XF86AudioPrev, exec, playerctl previous
|
||||
binde = , XF86AudioNext, exec, playerctl next
|
||||
binde = , XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||
binde = , XF86AudioLowerVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ -5%
|
||||
binde = , XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +5%
|
||||
|
||||
# custom audio control
|
||||
binde = $mainMod, F1, exec, playerctl play-pause
|
||||
binde = $mainMod, F2, exec, playerctl previous
|
||||
binde = $mainMod, F3, exec, playerctl next
|
||||
|
||||
# move focus
|
||||
bind = $mainMod, h, movefocus, l
|
||||
bind = $mainMod, l, movefocus, r
|
||||
bind = $mainMod, k, movefocus, u
|
||||
bind = $mainMod, j, movefocus, d
|
||||
|
||||
# workspaces
|
||||
bind = $mainMod, 1, workspace, 1
|
||||
bind = $mainMod, 2, workspace, 2
|
||||
bind = $mainMod, 3, workspace, 3
|
||||
bind = $mainMod, 4, workspace, 4
|
||||
bind = $mainMod, 5, workspace, 5
|
||||
bind = $mainMod, 6, workspace, 6
|
||||
bind = $mainMod SHIFT, 1, movetoworkspace, 1
|
||||
bind = $mainMod SHIFT, 1, centerwindow
|
||||
bind = $mainMod SHIFT, 2, movetoworkspace, 2
|
||||
bind = $mainMod SHIFT, 2, centerwindow
|
||||
bind = $mainMod SHIFT, 3, movetoworkspace, 3
|
||||
bind = $mainMod SHIFT, 3, centerwindow
|
||||
bind = $mainMod SHIFT, 4, movetoworkspace, 4
|
||||
bind = $mainMod SHIFT, 4, centerwindow
|
||||
bind = $mainMod SHIFT, 5, movetoworkspace, 5
|
||||
bind = $mainMod SHIFT, 5, centerwindow
|
||||
bind = $mainMod SHIFT, 6, movetoworkspace, 6
|
||||
bind = $mainMod SHIFT, 6, centerwindow
|
||||
bind = $mainMod ALT, 1, movetoworkspacesilent, 1
|
||||
bind = $mainMod ALT, 2, movetoworkspacesilent, 2
|
||||
bind = $mainMod ALT, 3, movetoworkspacesilent, 3
|
||||
bind = $mainMod ALT, 4, movetoworkspacesilent, 4
|
||||
bind = $mainMod ALT, 5, movetoworkspacesilent, 5
|
||||
bind = $mainMod ALT, 6, movetoworkspacesilent, 6
|
||||
|
||||
# resizing windows
|
||||
binde = $mainMod, right, resizeactive, 5 0
|
||||
binde = $mainMod, left, resizeactive, -5 0
|
||||
binde = $mainMod, up, resizeactive, 0 -5
|
||||
binde = $mainMod, down, resizeactive, 0 5
|
||||
bindm = $mainMod, mouse:272, movewindow
|
||||
bindm = $mainMod, mouse:273, resizewindow
|
||||
|
||||
# recordings
|
||||
bind = SUPER, R, pass, class:^(com\.obsproject\.Studio)$
|
||||
bind = SUPER, F9, pass, class:^(com\.obsproject\.Studio)$
|
||||
bind = SUPER, F10, pass, class:^(com\.obsproject\.Studio)$
|
||||
|
||||
# < End Section >
|
||||
@@ -0,0 +1,83 @@
|
||||
source = $HOME/.config/hypr/colorscheme.conf
|
||||
|
||||
$font = JetBrainsMono Nerd Font
|
||||
|
||||
# GENERAL
|
||||
general {
|
||||
disable_loading_bar = true
|
||||
hide_cursor = true
|
||||
}
|
||||
|
||||
# BACKGROUND
|
||||
background {
|
||||
monitor =
|
||||
blur_passes = 0
|
||||
color = $bg
|
||||
}
|
||||
|
||||
background {
|
||||
monitor = eDP-1
|
||||
path = ~/.profile/wallpaper-locked.png
|
||||
blur_passes = 0
|
||||
color = $bg
|
||||
}
|
||||
|
||||
# TIME
|
||||
label {
|
||||
monitor = eDP-1
|
||||
text = cmd[update:30000] echo "$(date +"%R")"
|
||||
color = $gray
|
||||
font_size = 90
|
||||
font_family = $font
|
||||
position = -30, 0
|
||||
halign = right
|
||||
valign = top
|
||||
}
|
||||
|
||||
# DATE
|
||||
label {
|
||||
monitor = eDP-1
|
||||
text = cmd[update:43200000] echo "$(date +"%A, %d %B %Y")"
|
||||
color = $gray
|
||||
font_size = 25
|
||||
font_family = $font
|
||||
position = -30, -150
|
||||
halign = right
|
||||
valign = top
|
||||
}
|
||||
|
||||
# USER AVATAR
|
||||
|
||||
image {
|
||||
monitor = eDP-1
|
||||
path = ~/.profile/pfp.png
|
||||
size = 100
|
||||
border_color = $orange
|
||||
|
||||
position = 0, 75
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
|
||||
# INPUT FIELD
|
||||
input-field {
|
||||
monitor = eDP-1
|
||||
size = 300, 60
|
||||
outline_thickness = 4
|
||||
dots_size = 0.2
|
||||
dots_spacing = 0.2
|
||||
dots_center = true
|
||||
outer_color = $orange
|
||||
inner_color = rgb($bg)
|
||||
font_color = rgb($gray)
|
||||
fade_on_empty = false
|
||||
placeholder_text = <span foreground="##$fg3"><i> Logged in as </i><span foreground="##$fg3">$USER</span></span>
|
||||
hide_input = false
|
||||
check_color = rgb($orange)
|
||||
fail_color = rgb($red)
|
||||
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
|
||||
capslock_color = rgb($red)
|
||||
position = 0, -35
|
||||
halign = center
|
||||
valign = center
|
||||
}
|
||||
Executable
+5
@@ -0,0 +1,5 @@
|
||||
splash = false
|
||||
# Single monitor setup
|
||||
preload=~/pics/dharmx/nord/holy-arch-nordic.png
|
||||
wallpaper=eDP-1,~/pics/dharmx/nord/holy-arch-nordic.png
|
||||
ipc = off
|
||||
Executable
+61
@@ -0,0 +1,61 @@
|
||||
$rosewaterAlpha = fff5e0dc
|
||||
$flamingoAlpha = fff2cdcd
|
||||
$pinkAlpha = fff5c2e7
|
||||
$mauveAlpha = ffcba6f7
|
||||
$redAlpha = fff38ba8
|
||||
$maroonAlpha = ffeba0ac
|
||||
$peachAlpha = fffab387
|
||||
$yellowAlpha = fff9e2af
|
||||
$greenAlpha = ffa6e3a1
|
||||
$tealAlpha = ff94e2d5
|
||||
$skyAlpha = ff89dceb
|
||||
$sapphireAlpha = ff74c7ec
|
||||
$blueAlpha = ff89b4fa
|
||||
$lavenderAlpha = ffb4befe
|
||||
|
||||
$textAlpha = ffcdd6f4
|
||||
$subtext1Alpha = ffbac2de
|
||||
$subtext0Alpha = ffa6adc8
|
||||
|
||||
$overlay2Alpha = ff9399b2
|
||||
$overlay1Alpha = ff7f849c
|
||||
$overlay0Alpha = ff6c7086
|
||||
|
||||
$surface2Alpha = ff585b70
|
||||
$surface1Alpha = ff45475a
|
||||
$surface0Alpha = ff313244
|
||||
|
||||
$baseAlpha = ff1e1e2e
|
||||
$mantleAlpha = ff181825
|
||||
$crustAlpha = ff11111b
|
||||
|
||||
$rosewater = 0xfff5e0dc
|
||||
$flamingo = 0xfff2cdcd
|
||||
$pink = 0xfff5c2e7
|
||||
$mauve = 0xffcba6f7
|
||||
$red = 0xfff38ba8
|
||||
$maroon = 0xffeba0ac
|
||||
$peach = 0xfffab387
|
||||
$yellow = 0xfff9e2af
|
||||
$green = 0xffa6e3a1
|
||||
$teal = 0xff94e2d5
|
||||
$sky = 0xff89dceb
|
||||
$sapphire = 0xff74c7ec
|
||||
$blue = 0xff89b4fa
|
||||
$lavender = 0xffb4befe
|
||||
|
||||
$text = 0xffcdd6f4
|
||||
$subtext1 = 0xffbac2de
|
||||
$subtext0 = 0xffa6adc8
|
||||
|
||||
$overlay2 = 0xff9399b2
|
||||
$overlay1 = 0xff7f849c
|
||||
$overlay0 = 0xff6c7086
|
||||
|
||||
$surface2 = 0xff585b70
|
||||
$surface1 = 0xff45475a
|
||||
$surface0 = 0xff313244
|
||||
|
||||
$base = 0xff1e1e2e
|
||||
$mantle = 0xff181825
|
||||
$crust = 0xff11111b
|
||||
Executable
+60
@@ -0,0 +1,60 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# wallpaper var
|
||||
EnableWallDcol=0
|
||||
ConfDir="${XDG_CONFIG_HOME:-$HOME/.config}"
|
||||
CloneDir="$HOME/Hyprdots"
|
||||
ThemeCtl="$ConfDir/hypr/theme.ctl"
|
||||
cacheDir="$HOME/.cache/hyprdots"
|
||||
|
||||
# theme var
|
||||
gtkTheme=`gsettings get org.gnome.desktop.interface gtk-theme | sed "s/'//g"`
|
||||
gtkMode=`gsettings get org.gnome.desktop.interface color-scheme | sed "s/'//g" | awk -F '-' '{print $2}'`
|
||||
|
||||
# hypr var
|
||||
hypr_border=`hyprctl -j getoption decoration:rounding | jq '.int'`
|
||||
hypr_width=`hyprctl -j getoption general:border_size | jq '.int'`
|
||||
|
||||
# notification var
|
||||
#ncolor="-h string:bgcolor:#191724 -h string:fgcolor:#faf4ed -h string:frcolor:#56526e"
|
||||
#
|
||||
#if [ "${gtkMode}" == "light" ] ; then
|
||||
# ncolor="-h string:bgcolor:#f4ede8 -h string:fgcolor:#9893a5 -h string:frcolor:#908caa"
|
||||
#fi
|
||||
|
||||
# pacman fns
|
||||
pkg_installed()
|
||||
{
|
||||
local PkgIn=$1
|
||||
|
||||
if pacman -Qi $PkgIn &> /dev/null
|
||||
then
|
||||
#echo "${PkgIn} is already installed..."
|
||||
return 0
|
||||
else
|
||||
#echo "${PkgIn} is not installed..."
|
||||
return 1
|
||||
fi
|
||||
}
|
||||
|
||||
get_aurhlpr()
|
||||
{
|
||||
if pkg_installed yay
|
||||
then
|
||||
aurhlpr="yay"
|
||||
elif pkg_installed paru
|
||||
then
|
||||
aurhlpr="paru"
|
||||
fi
|
||||
}
|
||||
|
||||
check(){
|
||||
local Pkg_Dep=$(for PkgIn in "$@"; do ! pkg_installed $PkgIn && echo "$PkgIn"; done)
|
||||
|
||||
if [ -n "$Pkg_Dep" ]; then echo -e "$0 Dependencies:\n$Pkg_Dep"
|
||||
read -p "ENTER to install (Other key: Cancel): " ans
|
||||
if [ -z "$ans" ]; then get_aurhlpr ; $aurhlpr -S $Pkg_Dep
|
||||
else echo "Skipping installation of packages" ;exit 1
|
||||
fi
|
||||
fi
|
||||
}
|
||||
Executable
+61
@@ -0,0 +1,61 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
# Check if wlogout is already running
|
||||
if pgrep -x "wlogout" > /dev/null
|
||||
then
|
||||
pkill -x "wlogout"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# set file variables
|
||||
ScrDir=`dirname "$(realpath "$0")"`
|
||||
source $ScrDir/globalcontrol.sh
|
||||
wLayout="${XDG_CONFIG_HOME:-$HOME/.config}/wlogout/layout_$1"
|
||||
wlTmplt="${XDG_CONFIG_HOME:-$HOME/.config}/wlogout/style_$1.css"
|
||||
|
||||
if [ ! -f $wLayout ] || [ ! -f $wlTmplt ] ; then
|
||||
echo "ERROR: Config $1 not found..."
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
# detect monitor res
|
||||
x_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .width')
|
||||
y_mon=$(hyprctl -j monitors | jq '.[] | select(.focused==true) | .height')
|
||||
hypr_scale=$(hyprctl -j monitors | jq '.[] | select (.focused == true) | .scale' | sed 's/\.//')
|
||||
|
||||
|
||||
# scale config layout and style
|
||||
case $1 in
|
||||
1) wlColms=6
|
||||
export mgn=$(( y_mon * 28 / hypr_scale ))
|
||||
export hvr=$(( y_mon * 23 / hypr_scale )) ;;
|
||||
2) wlColms=2
|
||||
export x_mgn=$(( x_mon * 35 / hypr_scale ))
|
||||
export y_mgn=$(( y_mon * 25 / hypr_scale ))
|
||||
export x_hvr=$(( x_mon * 32 / hypr_scale ))
|
||||
export y_hvr=$(( y_mon * 20 / hypr_scale )) ;;
|
||||
esac
|
||||
|
||||
# scale font size
|
||||
export fntSize=$(( y_mon * 2 / 100 ))
|
||||
|
||||
# detect gtk system theme
|
||||
export BtnCol=`[ "$gtkMode" == "dark" ] && ( echo "white" ) || ( echo "black" )`
|
||||
export WindBg=`[ "$gtkMode" == "dark" ] && ( echo "rgba(0,0,0,0.5)" ) || ( echo "rgba(255,255,255,0.5)" )`
|
||||
|
||||
if [ "$EnableWallDcol" -eq 1 ] ; then
|
||||
export wbarTheme="Wall-Dcol"
|
||||
else
|
||||
export wbarTheme="${gtkTheme}"
|
||||
fi
|
||||
|
||||
# eval hypr border radius
|
||||
export active_rad=$(( hypr_border * 5 ))
|
||||
export button_rad=$(( hypr_border * 8 ))
|
||||
|
||||
# eval config files
|
||||
wlStyle=`envsubst < $wlTmplt`
|
||||
|
||||
# launch wlogout
|
||||
wlogout -b $wlColms -c 0 -r 0 -m 0 --layout $wLayout --css <(echo "$wlStyle") --protocol layer-shell
|
||||
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
killall xdg-desktop-portal-hyprland
|
||||
killall xdg-desktop-portal-gnome
|
||||
killall xdg-desktop-portal-kde
|
||||
killall xdg-desktop-portal-lxqt
|
||||
killall xdg-desktop-portal-wlr
|
||||
killall xdg-desktop-portal
|
||||
/usr/lib/xdg-desktop-portal-hyprland &
|
||||
/usr/lib/xdg-desktop-portal &
|
||||
Executable
+21
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Custom resolution through xrandr (21:9)
|
||||
xrandr --newmode "2560x1080" 677.75 2560 2784 3064 3568 1080 1083 1093 1188 -hsync +vsync
|
||||
xrandr --newmode "2560x1080R" 373.00 2560 2608 2640 2720 1080 1083 1093 1144 +hsync -vsync
|
||||
xrandr --addmode DP-1 2560x1080
|
||||
xrandr --addmode DP-1 2560x1080R
|
||||
|
||||
# 3200x900 suggestion (32:9)
|
||||
xrandr --newmode "3200x900" 704.50 3200 3472 3824 4448 900 903 913 991 -hsync +vsync
|
||||
xrandr --addmode DP-1 3200x900
|
||||
|
||||
# 3200x1100 suggestion
|
||||
xrandr --newmode "3200x1100" 863.75 3200 3480 3832 4464 1100 1103 1113 1210 -hsync +vsync
|
||||
xrandr --addmode DP-1 3200x1100
|
||||
|
||||
# 3200x1100 suggestion (21:9)
|
||||
xrandr --newmode "2100x900" 462.50 2100 2280 2512 2920 900 903 913 991 -hsync +vsync
|
||||
xrandr --addmode DP-1 2100x900
|
||||
|
||||
sleep 2 && xrandr --output DP-1 --primary # Set primary monitor for xwayland
|
||||
@@ -1,32 +0,0 @@
|
||||
-- Telescope
|
||||
local builtin = require('telescope.builtin')
|
||||
vim.keymap.set('n', '<leader>pf', builtin.find_files, {})
|
||||
vim.keymap.set('n', '<C-p>', builtin.git_files, {})
|
||||
vim.keymap.set('n', '<leader>ps', function()
|
||||
builtin.grep_string({ search = vim.fn.input("Grep > ") })
|
||||
end)
|
||||
|
||||
-- Harpoon 2
|
||||
local harpoon = require("harpoon")
|
||||
-- REQUIRED
|
||||
harpoon:setup()
|
||||
-- REQUIRED
|
||||
vim.keymap.set("n", "<leader>a", function() harpoon:list():add() end)
|
||||
vim.keymap.set("n", "<C-t>", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end)
|
||||
vim.keymap.set("n", "<C-q>", function() harpoon:list():select(1) end)
|
||||
vim.keymap.set("n", "<C-w>", function() harpoon:list():select(2) end)
|
||||
vim.keymap.set("n", "<C-e>", function() harpoon:list():select(3) end)
|
||||
vim.keymap.set("n", "<C-r>", function() harpoon:list():select(4) end)
|
||||
|
||||
-- Fix annoying binds
|
||||
vim.keymap.del("n", "<C-W><C-D>")
|
||||
vim.keymap.del("n", "<C-W>d")
|
||||
|
||||
-- Zenmode
|
||||
vim.keymap.set("n", "<leader>pz", function()
|
||||
require("zen-mode").toggle({
|
||||
window = {
|
||||
width = 90,
|
||||
}
|
||||
})
|
||||
end)
|
||||
@@ -1,59 +0,0 @@
|
||||
-- lsp-zero
|
||||
local lsp_zero = require('lsp-zero')
|
||||
|
||||
lsp_zero.on_attach(function(client, bufnr)
|
||||
local opts = {buffer = bufnr, remap = false}
|
||||
|
||||
vim.keymap.set("n", "<leader>gd", function() vim.lsp.buf.definition() end, opts)
|
||||
vim.keymap.set("n", "<leader>vd", function() vim.lsp.buf.hover() end, opts)
|
||||
vim.keymap.set("n", "<leader>ve", function() vim.diagnostic.open_float() end, opts)
|
||||
vim.diagnostic.config({virtual_text = false})
|
||||
end)
|
||||
|
||||
-- Cmp
|
||||
local cmp = require('cmp')
|
||||
local cmp_select = {behavior = cmp.SelectBehavior.Select}
|
||||
|
||||
cmp.setup({
|
||||
sources = {
|
||||
{name = 'nvim_lsp'},
|
||||
{name = 'nvim_lsp_signature_help'},
|
||||
{name = 'nvim_lua'},
|
||||
{name = 'luasnip', keyword_length = 2},
|
||||
{name = 'buffer', keyword_length = 3},
|
||||
{name = 'path'},
|
||||
},
|
||||
formatting = lsp_zero.cmp_format(),
|
||||
completion = {
|
||||
completeopt = 'menu,menuone,noinsert'
|
||||
},
|
||||
mapping = cmp.mapping.preset.insert({
|
||||
['<C-k>'] = cmp.mapping.select_prev_item(cmp_select),
|
||||
['<C-j>'] = cmp.mapping.select_next_item(cmp_select),
|
||||
['<C-l>'] = cmp.mapping.confirm({ select = true }),
|
||||
['<C-Space>'] = cmp.mapping.complete(),
|
||||
}),
|
||||
})
|
||||
|
||||
-- Treesitter
|
||||
vim.opt.runtimepath:append("~/.local/share/nvim/parsers")
|
||||
|
||||
require('nvim-treesitter.configs').setup {
|
||||
ensure_installed = {
|
||||
"c", "lua", "vim", "c_sharp", "cpp", "python", "json", "json5",
|
||||
"bibtex", "query" },
|
||||
sync_install = false,
|
||||
auto_install = true,
|
||||
parser_install_dir = "~/.local/share/nvim/parsers",
|
||||
highlight = {
|
||||
enable = true,
|
||||
additional_vim_regex_highlighting = false,
|
||||
},
|
||||
}
|
||||
|
||||
-- Obsidian
|
||||
vim.opt.conceallevel = 1
|
||||
|
||||
-- Colors
|
||||
vim.o.background = "light" -- or "dark" for dark mode
|
||||
vim.cmd([[colorscheme gruvbox]])
|
||||
@@ -1,2 +0,0 @@
|
||||
require('trianta')
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
require("trianta.vim")
|
||||
require("trianta.lazy")
|
||||
|
||||
@@ -1,92 +0,0 @@
|
||||
-- Lazy
|
||||
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not vim.loop.fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
"--branch=stable", -- latest stable release
|
||||
lazypath,
|
||||
})
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
return require('lazy').setup({
|
||||
{
|
||||
"folke/lazy.nvim",
|
||||
tag = "stable",
|
||||
},
|
||||
{
|
||||
"folke/todo-comments.nvim",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
opts = {
|
||||
-- your configuration comes here
|
||||
-- or leave it empty to use the default settings
|
||||
-- refer to the configuration section below
|
||||
}
|
||||
},
|
||||
{
|
||||
"ellisonleao/gruvbox.nvim",
|
||||
name = "gruvbox",
|
||||
priority = 1000
|
||||
},
|
||||
-- colors
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
lazy = false,
|
||||
build = ":TSUpdate",
|
||||
},
|
||||
{
|
||||
'VonHeikemen/lsp-zero.nvim',
|
||||
branch = 'v3.x',
|
||||
dependencies = {
|
||||
-- LSP Support
|
||||
"neovim/nvim-lspconfig", -- Required
|
||||
|
||||
-- Autocompletion
|
||||
'hrsh7th/nvim-cmp', -- Required
|
||||
'hrsh7th/cmp-nvim-lsp', -- Required
|
||||
'hrsh7th/cmp-buffer', -- Optional
|
||||
'hrsh7th/cmp-path', -- Optional
|
||||
|
||||
-- Snippets
|
||||
'L3MON4D3/LuaSnip', -- Required
|
||||
'rafamadriz/friendly-snippets', -- Optional
|
||||
}
|
||||
},
|
||||
-- navigation
|
||||
{
|
||||
"nvim-telescope/telescope.nvim",
|
||||
version = '*',
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
},
|
||||
{
|
||||
"ThePrimeagen/harpoon",
|
||||
branch = "harpoon2",
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
},
|
||||
-- obsidian
|
||||
{
|
||||
"epwalsh/obsidian.nvim",
|
||||
version = "v3.2.0",
|
||||
lazy = true,
|
||||
ft = "markdown",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
},
|
||||
opts = {
|
||||
workspaces = {
|
||||
{
|
||||
name = "trinote",
|
||||
path = "~/sync/obsidian/Trinote/",
|
||||
},
|
||||
},
|
||||
disable_frontmatter = true,
|
||||
},
|
||||
ui = {
|
||||
enable = true
|
||||
}
|
||||
},
|
||||
})
|
||||
@@ -1,33 +0,0 @@
|
||||
-- vim core settings
|
||||
vim.opt.nu = true
|
||||
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.expandtab = true
|
||||
|
||||
vim.opt.smartindent = true
|
||||
|
||||
vim.opt.wrap = false
|
||||
|
||||
vim.opt.hlsearch = false
|
||||
vim.opt.incsearch = true
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
vim.opt.scrolloff = 8
|
||||
vim.opt.signcolumn = "yes"
|
||||
|
||||
vim.opt.updatetime = 50
|
||||
|
||||
-- Original limit
|
||||
vim.opt.colorcolumn = "80"
|
||||
-- Obisidian limit
|
||||
-- vim.opt.colorcolumn = "55"
|
||||
|
||||
vim.g.mapleader = " "
|
||||
|
||||
vim.opt.mouse = ""
|
||||
|
||||
vim.g.mapleader = " "
|
||||
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex)
|
||||
@@ -1,20 +0,0 @@
|
||||
# Start panels at 1
|
||||
set -g base-index 1
|
||||
set -g pane-base-index 1
|
||||
set-window-option -g pane-base-index 1
|
||||
set-option -g renumber-windows on
|
||||
|
||||
# vi visual bindings
|
||||
setw -g mode-keys vi
|
||||
bind-key -T copy-mode-vi 'v' send -X begin-selection # Begin selection in copy mode.
|
||||
bind-key -T copy-mode-vi 'C-v' send -X rectangle-toggle # Begin selection in copy mode.
|
||||
bind-key -T copy-mode-vi 'y' send -X copy-selection # Yank selection in copy mode.
|
||||
set-option -g status-keys vi
|
||||
set-option -g mouse on
|
||||
|
||||
# Plugins
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
set -g @catppuccin_flavour 'mocha' # or frappe, latte, mocha
|
||||
set -g @plugin 'tmux-plugins/tpm'
|
||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||
run '/usr/share/tmux-plugin-manager/tpm'
|
||||
@@ -1,12 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
echo "Syncing dotfiles with nvim..."
|
||||
rsync --delete --recursive ~/.config/nvim $(dirname "$0")
|
||||
|
||||
echo "Syncing dotfiles with tmux..."
|
||||
rsync ~/.config/tmux/tmux.conf $(dirname "$0")/tmux/tmux.conf
|
||||
|
||||
echo "Syncing dotfiles with zshrc..."
|
||||
rsync ~/.zshrc $(dirname "$0")/.zshrc
|
||||
|
||||
echo "Syncing dotfiles with alacritty..."
|
||||
rsync --recursive ~/.config/alacritty $(dirname "$0")
|
||||
echo "Syncing dotfiles with hypr..."
|
||||
rsync --recursive ~/.config/hypr $(dirname "$0")
|
||||
echo "Syncing dotfiles with waybar..."
|
||||
rsync --recursive ~/.config/waybar $(dirname "$0")
|
||||
echo "Syncing complete!"
|
||||
|
||||
+130
@@ -0,0 +1,130 @@
|
||||
[
|
||||
{
|
||||
"name": "main",
|
||||
"layer": "bottom",
|
||||
"position": "top",
|
||||
"height": 40,
|
||||
"spacing": 0,
|
||||
"output": "eDP-1",
|
||||
"reload_style_on_change": true,
|
||||
"modules-left": [
|
||||
"custom/appmenu",
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"custom/gpu",
|
||||
"temperature"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"wireplumber",
|
||||
"network#wifi",
|
||||
"battery",
|
||||
"clock",
|
||||
"custom/poweroff"
|
||||
],
|
||||
"battery": {
|
||||
"interval": 20,
|
||||
"states": {
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": [" ", " ", " ", " ", " "],
|
||||
"max-length": 25
|
||||
},
|
||||
"clock": {
|
||||
"interval": 1,
|
||||
"format": "<b>{:%H:%M:%S %p}</b>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"interval": 5,
|
||||
"tooltip": false
|
||||
},
|
||||
"disk": {
|
||||
"format": " {percentage_used}%",
|
||||
"tooltip-format": "{used} / {total} used"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%",
|
||||
"tooltip-format": "{used:0.1f}G / {total:0.1f}G used"
|
||||
},
|
||||
"temperature": {
|
||||
"format": "{icon} {temperatureC}°C ",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"hwmon-path": "/sys/class/thermal/thermal_zone2/temp",
|
||||
"critical-threshold": 80,
|
||||
"interval": 5
|
||||
},
|
||||
"temperature": {
|
||||
"critical-threshold": 80,
|
||||
"format": "{icon} {temperatureC}°C",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"hwmon-path": "/sys/class/hwmon/hwmon4/temp1_input"
|
||||
},
|
||||
"network#wifi": {
|
||||
"interface": "wlo1",
|
||||
"format-wifi": " {signalStrength}%",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname}: {ipaddr}/{cidr}"
|
||||
},
|
||||
"sway/mode": {
|
||||
"format": "<span style=\"italic\">{}</span>"
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "{icon}",
|
||||
"sort-by-number": true,
|
||||
"all-outputs": true,
|
||||
"disable-scroll": true,
|
||||
"active-only": false,
|
||||
"format-icons": {
|
||||
"active": "",
|
||||
"default": "",
|
||||
"persistent": "",
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": [ ],
|
||||
"2": [ ],
|
||||
"3": [ ],
|
||||
"4": [ ],
|
||||
"5": [ ]
|
||||
}
|
||||
|
||||
},
|
||||
"wireplumber": {
|
||||
"format": " {volume}%",
|
||||
"format-muted": " 0%",
|
||||
"on-click": "pavucontrol",
|
||||
"on-click-right": "helvum",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 5
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"custom/appmenu": {
|
||||
"format": "",
|
||||
"on-click": "pkill -x rofi || rofi -show drun"
|
||||
},
|
||||
"custom/poweroff": {
|
||||
"tooltip": false,
|
||||
"format": " ",
|
||||
"on-click": "pgrep poweroff.sh || $HOME/.config/waybar/scripts/poweroff.sh"
|
||||
},
|
||||
}
|
||||
]
|
||||
|
||||
Executable
+141
@@ -0,0 +1,141 @@
|
||||
[
|
||||
{
|
||||
"name": "main",
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 38,
|
||||
"spacing": 4,
|
||||
"margin-top": 4,
|
||||
"margin-bottom": 0,
|
||||
"output": "eDP-1",
|
||||
"modules-left": [
|
||||
"disk",
|
||||
"memory",
|
||||
"cpu",
|
||||
"temperature",
|
||||
"pulseaudio"
|
||||
],
|
||||
"modules-center": ["hyprland/workspaces"],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"network#wifi",
|
||||
"custom/weather",
|
||||
"battery",
|
||||
"clock",
|
||||
"custom/poweroff"
|
||||
],
|
||||
"battery": {
|
||||
"interval": 60,
|
||||
"states": {
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": ["", "", "", "", "", ""],
|
||||
"max-length": 25
|
||||
},
|
||||
"clock": {
|
||||
"interval": 1,
|
||||
"format": "<b>{:%H:%M:%S}</b>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"tooltip": false
|
||||
},
|
||||
"disk": {
|
||||
"format": " {}%",
|
||||
"tooltip-format": "{used} / {total} used"
|
||||
},
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "",
|
||||
"deactivated": ""
|
||||
}
|
||||
},
|
||||
"memory": {
|
||||
"format": " {}%",
|
||||
"tooltip-format": "{used:0.1f}G / {total:0.1f}G used"
|
||||
},
|
||||
"temperature": {
|
||||
"critical-threshold": 80,
|
||||
"format": "{icon} {temperatureC}°C",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"hwmon-path": "/sys/class/thermal/thermal_zone2/temp"
|
||||
},
|
||||
"network#wifi": {
|
||||
"interface": "wlo1",
|
||||
"format-wifi": " {essid} ({signalStrength})%",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ifname}: {ipaddr}/{cidr}"
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"format": "{icon}",
|
||||
"sort-by-number": true,
|
||||
"all-outputs": true,
|
||||
"disable-scroll": true,
|
||||
"active-only": false,
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
"persistent": "",
|
||||
"active": ""
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"1": [ ],
|
||||
"2": [ ],
|
||||
"3": [ ],
|
||||
"4": [ ],
|
||||
"5": [ ]
|
||||
}
|
||||
},
|
||||
"wlr/taskbar": {
|
||||
"format": "{name}",
|
||||
"icon-size": 32,
|
||||
"tooltip": false,
|
||||
"on-click": "activate",
|
||||
"on-click-right": "close",
|
||||
"all-outputs": true,
|
||||
"ignore-list": [
|
||||
"xwaylandvideobridge"
|
||||
],
|
||||
"rewrite": {
|
||||
"(.*)Firefox Web Browser": "",
|
||||
"(.*)Discord": "",
|
||||
"(.*)Alacritty": "",
|
||||
"Steam(.*)": "",
|
||||
"(.*)Spotify": ""
|
||||
}
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": " {volume}%",
|
||||
"format-muted": " 0%",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 0
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 21,
|
||||
"spacing": 10
|
||||
},
|
||||
"custom/spotify": {
|
||||
"interval": 1,
|
||||
"return-type": "json",
|
||||
"exec": "~/.config/waybar/scripts/spotify.sh",
|
||||
"exec-if": "pgrep spotify",
|
||||
"escape": true
|
||||
},
|
||||
"custom/poweroff": {
|
||||
"tooltip": false,
|
||||
"format": " ",
|
||||
"on-click": "bash ~/.config/waybar/scripts/poweroff.sh"
|
||||
},
|
||||
"custom/weather": {
|
||||
"exec": "~/.config/waybar/scripts/get_weather.sh Belleville+Illinois",
|
||||
"return-type": "json",
|
||||
"format": "{}",
|
||||
"tooltip": true,
|
||||
"interval": 3600
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
*
|
||||
* Catppuccin Frappe palette
|
||||
* Maintainer: rubyowo
|
||||
*
|
||||
*/
|
||||
|
||||
@define-color base #303446;
|
||||
@define-color mantle #292c3c;
|
||||
@define-color crust #232634;
|
||||
|
||||
@define-color text #c6d0f5;
|
||||
@define-color subtext0 #a5adce;
|
||||
@define-color subtext1 #b5bfe2;
|
||||
|
||||
@define-color surface0 #414559;
|
||||
@define-color surface1 #51576d;
|
||||
@define-color surface2 #626880;
|
||||
|
||||
@define-color overlay0 #737994;
|
||||
@define-color overlay1 #838ba7;
|
||||
@define-color overlay2 #949cbb;
|
||||
|
||||
@define-color blue #8caaee;
|
||||
@define-color lavender #babbf1;
|
||||
@define-color sapphire #85c1dc;
|
||||
@define-color sky #99d1db;
|
||||
@define-color teal #81c8be;
|
||||
@define-color green #a6d189;
|
||||
@define-color yellow #e5c890;
|
||||
@define-color peach #ef9f76;
|
||||
@define-color maroon #ea999c;
|
||||
@define-color red #e78284;
|
||||
@define-color mauve #ca9ee6;
|
||||
@define-color pink #f4b8e4;
|
||||
@define-color flamingo #eebebe;
|
||||
@define-color rosewater #f2d5cf;
|
||||
Executable
+37
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
*
|
||||
* Catppuccin Mocha palette
|
||||
* Maintainer: rubyowo
|
||||
*
|
||||
*/
|
||||
|
||||
@define-color base #1e1e2e;
|
||||
@define-color mantle #181825;
|
||||
@define-color crust #11111b;
|
||||
|
||||
@define-color text #cdd6f4;
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color sky #89dceb;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color peach #fab387;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color red #f38ba8;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color rosewater #f5e0dc;
|
||||
Executable
+19
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
# get_weather.sh
|
||||
for i in {1..5}
|
||||
do
|
||||
text=$(curl -s "https://wttr.in/$1?format=1")
|
||||
if [[ $? == 0 ]]
|
||||
then
|
||||
text=$(echo "$text" | sed -E "s/\s+/ /g")
|
||||
tooltip=$(curl -s "https://wttr.in/$1?format=4")
|
||||
if [[ $? == 0 ]]
|
||||
then
|
||||
tooltip=$(echo "$tooltip" | sed -E "s/\s+/ /g")
|
||||
echo "{\"text\":\"$text\", \"tooltip\":\"$tooltip\"}"
|
||||
exit
|
||||
fi
|
||||
fi
|
||||
sleep 2
|
||||
done
|
||||
echo "{\"text\":\"error\", \"tooltip\":\"error\"}"
|
||||
Executable
+27
@@ -0,0 +1,27 @@
|
||||
#!/bin/bash
|
||||
case $(wofi -d -L 6 -l 3 -W 100 -x -100 -y 10 \
|
||||
-D dynamic_lines=true << EOF | sed 's/^ *//'
|
||||
Shutdown
|
||||
Reboot
|
||||
Log off
|
||||
Sleep
|
||||
Lock
|
||||
Cancel
|
||||
EOF
|
||||
) in
|
||||
"Shutdown")
|
||||
systemctl poweroff
|
||||
;;
|
||||
"Reboot")
|
||||
systemctl reboot
|
||||
;;
|
||||
"Sleep")
|
||||
systemctl suspend
|
||||
;;
|
||||
"Lock")
|
||||
loginctl lock-session
|
||||
;;
|
||||
"Log off")
|
||||
hyprctl dispatch exit
|
||||
;;
|
||||
esac
|
||||
Executable
+18
@@ -0,0 +1,18 @@
|
||||
#!/bin/sh
|
||||
|
||||
class=$(playerctl metadata --player=spotify --format '{{lc(status)}}')
|
||||
icon=""
|
||||
|
||||
if [[ $class == "playing" ]]; then
|
||||
info=$(playerctl metadata --player=spotify --format '{{artist}} - {{title}}')
|
||||
if [[ ${#info} > 40 ]]; then
|
||||
info=$(echo $info | cut -c1-40)"..."
|
||||
fi
|
||||
text=$info" "$icon
|
||||
elif [[ $class == "paused" ]]; then
|
||||
text=$icon
|
||||
elif [[ $class == "stopped" ]]; then
|
||||
text=""
|
||||
fi
|
||||
|
||||
echo -e "{\"text\":\""$text"\", \"class\":\""$class"\"}"
|
||||
Executable
+85
@@ -0,0 +1,85 @@
|
||||
@import "frappe.css";
|
||||
|
||||
* {
|
||||
border: none;
|
||||
border-radius: 0px;
|
||||
min-height: 0;
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
font-family: "Hack Nerd Font";
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: alpha(@crust, 0.3);
|
||||
border-radius: 0px;
|
||||
border-bottom: 0px solid @overlay0;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @peach;
|
||||
border-radius: 8px;
|
||||
margin: 4px 2px;
|
||||
padding: 0px 8px;
|
||||
padding-right: 12px; /* why?? */
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: alpha(@peach, 0.2);
|
||||
transition: all 0.4s ease;
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-center,
|
||||
.modules-right {
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
.modules-left {
|
||||
padding-left: 0px;
|
||||
}
|
||||
|
||||
.modules-right {
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
#battery,
|
||||
#clock,
|
||||
#cpu,
|
||||
#disk,
|
||||
#memory,
|
||||
#temperature,
|
||||
#tray,
|
||||
#wireplumber,
|
||||
#workspaces,
|
||||
#network,
|
||||
#custom-appmenu,
|
||||
#custom-gpu,
|
||||
#custom-poweroff,
|
||||
#custom-weather {
|
||||
background-color: transparent;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
margin-left: 6px;
|
||||
margin-right: 6px;
|
||||
color: @peach;
|
||||
min-width: 45px;
|
||||
}
|
||||
|
||||
#network {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#custom-appmenu,
|
||||
#workspaces label,
|
||||
#network {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
|
||||
#clock {
|
||||
min-width: 80px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user