Compare commits
6 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
15c9a31b75 | |
|
|
09643d550b | |
|
|
222a897755 | |
|
|
956f50f2c0 | |
|
|
c7733c01db | |
|
|
ddc77636ab |
|
|
@ -36,22 +36,17 @@ alias np='nano -w PKGBUILD'
|
||||||
alias more="less"
|
alias more="less"
|
||||||
alias rofi='rofi -m 1'
|
alias rofi='rofi -m 1'
|
||||||
alias weather="curl wttr.in"
|
alias weather="curl wttr.in"
|
||||||
alias ls="eza -lhg --group-directories-first"
|
alias ls="exa -lhg --group-directories-first"
|
||||||
alias ll="eza -lhga --group-directories-first"
|
alias ll="exa -lhga --group-directories-first"
|
||||||
alias vim="nvim"
|
alias vim="nvim"
|
||||||
alias docs="python ~/scripts/stock_price.py -s docs"
|
alias docs="python ~/scripts/stock_price.py -s docs"
|
||||||
alias stock="python ~/scripts/stock_price.py -s "
|
alias stock="python ~/scripts/stock_price.py -s "
|
||||||
alias r="ranger"
|
alias r="ranger"
|
||||||
alias grep='grep --colour=auto'
|
alias grep='grep --colour=auto'
|
||||||
alias cdd='. ~/scripts/project_picker.sh'
|
|
||||||
alias configedit='. ~/scripts/config_edit.sh'
|
|
||||||
alias clip='cliphist list | fzf --no-sort | cliphist decode | wl-copy'
|
|
||||||
alias vp='source ~/scripts/venv_picker.sh'
|
|
||||||
|
|
||||||
# expand path
|
# expand path
|
||||||
PATH=/usr/local/bin:/usr/bin/:/usr/sbin
|
PATH=/usr/local/bin:/usr/bin/:/usr/sbin
|
||||||
PATH=$PATH:~/.local/share
|
PATH=$PATH:~/.local/share
|
||||||
PATH=$PATH:/home/clint/flutter/bin
|
|
||||||
|
|
||||||
# exports
|
# exports
|
||||||
export EDITOR=/usr/bin/nvim
|
export EDITOR=/usr/bin/nvim
|
||||||
|
|
@ -70,6 +65,3 @@ bind '"\C-t": "fzf --preview \"cat {}\" < <(find . -type f) | xargs $EDITOR\n"'
|
||||||
|
|
||||||
# kinda annoying tbh
|
# kinda annoying tbh
|
||||||
# pfetch || neofetch || fastfetch
|
# pfetch || neofetch || fastfetch
|
||||||
|
|
||||||
# Created by `pipx` on 2025-05-04 00:05:20
|
|
||||||
export PATH="$PATH:/home/clint/.local/bin"
|
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,7 @@ monitor = DP-2,1920x1080, 1920x0, 1
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
$terminal = alacritty
|
$terminal = alacritty
|
||||||
$fileManager = dolphin
|
$fileManager = dolphin
|
||||||
# $menu = wofi --show drun
|
$menu = wofi --show drun
|
||||||
$menu = rofi -theme /home/clint/.config/wofi/test3.rasi -show drun
|
|
||||||
|
|
||||||
#################
|
#################
|
||||||
### AUTOSTART ###
|
### AUTOSTART ###
|
||||||
|
|
@ -23,7 +22,6 @@ $menu = rofi -theme /home/clint/.config/wofi/test3.rasi -show drun
|
||||||
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
# Autostart necessary processes (like notifications daemons, status bars, etc.)
|
||||||
# Or execute your favorite apps at launch like this:
|
# Or execute your favorite apps at launch like this:
|
||||||
exec-once = waybar & hyprpaper
|
exec-once = waybar & hyprpaper
|
||||||
exec-once = wl-paste --watch cliphist store
|
|
||||||
|
|
||||||
#############################
|
#############################
|
||||||
### ENVIRONMENT VARIABLES ###
|
### ENVIRONMENT VARIABLES ###
|
||||||
|
|
@ -67,12 +65,10 @@ decoration {
|
||||||
active_opacity = 1.0
|
active_opacity = 1.0
|
||||||
inactive_opacity = 1.0
|
inactive_opacity = 1.0
|
||||||
|
|
||||||
shadow {
|
drop_shadow = true
|
||||||
enabled = true
|
shadow_range = 4
|
||||||
range = 4
|
shadow_render_power = 3
|
||||||
render_power = 3
|
col.shadow = rgba(1a1a1aee)
|
||||||
color = rgba(1a1a1aee)
|
|
||||||
}
|
|
||||||
|
|
||||||
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
# https://wiki.hyprland.org/Configuring/Variables/#blur
|
||||||
blur {
|
blur {
|
||||||
|
|
@ -156,15 +152,10 @@ device {
|
||||||
# See https://wiki.hyprland.org/Configuring/Keywords/
|
# See https://wiki.hyprland.org/Configuring/Keywords/
|
||||||
$mainMod = SUPER # Sets "Windows" key as main modifier
|
$mainMod = SUPER # Sets "Windows" key as main modifier
|
||||||
|
|
||||||
# F-key shenanigans
|
|
||||||
bind = , code:68, exec, pactl set-sink-volume 0 -10% # F2
|
|
||||||
bind = , code:69, exec, pactl set-sink-volume 0 +10% # F3
|
|
||||||
bind = , code:70, exec, pactl set-sink-mute 0 toggle # F4
|
|
||||||
|
|
||||||
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
|
||||||
bind = $mainMod, Return, exec, $terminal
|
bind = $mainMod, Return, exec, $terminal
|
||||||
bind = $mainMod, Q, killactive,
|
bind = $mainMod, Q, killactive,
|
||||||
# bind = $mainMod, M, exit,
|
bind = $mainMod, M, exit,
|
||||||
bind = $mainMod SHIFT, Space, togglefloating,
|
bind = $mainMod SHIFT, Space, togglefloating,
|
||||||
bind = $mainMod, D, exec, $menu
|
bind = $mainMod, D, exec, $menu
|
||||||
bind = $mainMod SHIFT, P, pseudo, # dwindle
|
bind = $mainMod SHIFT, P, pseudo, # dwindle
|
||||||
|
|
@ -174,7 +165,6 @@ bind = $mainMod, P, exec, ~/scripts/hypr_change_wallpaper.sh
|
||||||
bind = $mainMod, L, exec, hyprlock
|
bind = $mainMod, L, exec, hyprlock
|
||||||
bind = $mainMod, F, fullscreen
|
bind = $mainMod, F, fullscreen
|
||||||
bind = $mainMod, X, exec, ~/scripts/hypr_shutdown.sh
|
bind = $mainMod, X, exec, ~/scripts/hypr_shutdown.sh
|
||||||
bind = $mainMod, H, exec, cliphist list | rofi -theme /home/clint/.config/wofi/test3.rasi -dmenu | cliphist decode | wl-copy
|
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
bind = $mainMod, left, movefocus, l
|
bind = $mainMod, left, movefocus, l
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# BACKGROUND
|
# BACKGROUND
|
||||||
background {
|
background {
|
||||||
monitor =
|
monitor =
|
||||||
path = /home/clint/Pictures/wallpapers/mountains2.jpg
|
path = /home/clint/Pictures/wallpapers/snowy_church.jpg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
preload =
|
preload =
|
||||||
wallpaper = HDMI-A-1, /home/clint/Pictures/wallpapers/abstract_red_blue.png
|
wallpaper = HDMI-A-1, /home/clint/Pictures/wallpapers/castle_view.jpg
|
||||||
wallpaper = DP-2, /home/clint/Pictures/wallpapers/abstract_red_blue.png
|
wallpaper = DP-2, /home/clint/Pictures/wallpapers/castle_view.jpg
|
||||||
|
|
||||||
#enable splash text rendering over the wallpaper
|
#enable splash text rendering over the wallpaper
|
||||||
splash = false
|
splash = false
|
||||||
|
|
|
||||||
|
|
@ -9,47 +9,3 @@ require("lazy").setup(
|
||||||
) -- loads each lua/plugin/*
|
) -- loads each lua/plugin/*
|
||||||
vim.cmd 'hi Normal guibg=NONE ctermbg=NONE'
|
vim.cmd 'hi Normal guibg=NONE ctermbg=NONE'
|
||||||
require("clint") -- loads lua/clint/init.lua
|
require("clint") -- loads lua/clint/init.lua
|
||||||
|
|
||||||
-- Mason setup
|
|
||||||
require('mason').setup()
|
|
||||||
require('mason-lspconfig').setup {
|
|
||||||
ensure_installed = { 'basedpyright' }, -- Install Pyright automatically
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- LSP setup
|
|
||||||
local lspconfig = require('lspconfig')
|
|
||||||
lspconfig.basedpyright.setup {
|
|
||||||
on_attach = function(client, bufnr)
|
|
||||||
-- Optional: Add keymaps for LSP actions
|
|
||||||
local opts = { buffer = bufnr, noremap = true, silent = true }
|
|
||||||
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, opts)
|
|
||||||
vim.keymap.set('n', 'K', vim.lsp.buf.hover, opts)
|
|
||||||
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, opts)
|
|
||||||
vim.keymap.set('n', '<leader>ca', vim.lsp.buf.code_action, opts)
|
|
||||||
end,
|
|
||||||
capabilities = require('cmp_nvim_lsp').default_capabilities(),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- nvim-cmp config
|
|
||||||
local cmp = require('cmp')
|
|
||||||
cmp.setup {
|
|
||||||
snippet = {
|
|
||||||
expand = function(args)
|
|
||||||
require('luasnip').lsp_expand(args.body)
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
mapping = cmp.mapping.preset.insert({
|
|
||||||
['<Tab>'] = cmp.mapping.select_next_item(),
|
|
||||||
['<S-Tab>'] = cmp.mapping.select_prev_item(),
|
|
||||||
['<CR>'] = cmp.mapping.confirm({ select = true }),
|
|
||||||
['<C-Space>'] = cmp.mapping.complete(),
|
|
||||||
}),
|
|
||||||
sources = cmp.config.sources({
|
|
||||||
{ name = 'nvim_lsp' },
|
|
||||||
{ name = 'luasnip' },
|
|
||||||
{ name = 'buffer' },
|
|
||||||
{ name = 'path' },
|
|
||||||
}),
|
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -113,7 +113,7 @@ set preview_images true
|
||||||
# Preview images in full color with the external command "ueberzug".
|
# Preview images in full color with the external command "ueberzug".
|
||||||
# Images are shown by using a child window.
|
# Images are shown by using a child window.
|
||||||
# Only for users who run X11 in GNU/Linux.
|
# Only for users who run X11 in GNU/Linux.
|
||||||
set preview_images_method kitty
|
set preview_images_method w3m
|
||||||
|
|
||||||
# Delay in seconds before displaying an image with the w3m method.
|
# Delay in seconds before displaying an image with the w3m method.
|
||||||
# Increase it in case of experiencing display corruption.
|
# Increase it in case of experiencing display corruption.
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ set-window-option -g status-left-length 30
|
||||||
|
|
||||||
# right status
|
# right status
|
||||||
set-window-option -g status-right-length 300
|
set-window-option -g status-right-length 300
|
||||||
set-window-option -g status-right "#[bg=white fg=black bold][`F]#[bg=black fg=white] Search #[bg=white fg=black bold][`C-r]#[bg=black fg=white] Restore #[bg=white fg=black bold][`C-s]#[bg=black fg=white] Save#[fg=brightred bg=black] #[fg=white bg=black] #{weather} #[fg=brightred bg=black] #[fg=colour179 bg=black]🖥 CPU:#{cpu_percentage} MEM:#{ram_percentage} #[fg=brightred bg=black] #[fg=white bg=black]📅%Y-%m-%d 🕗%I:%M%p"
|
set-window-option -g status-right "#[bg=white fg=black bold][`F]#[bg=black fg=white] Search #[bg=white fg=black bold][`C-r]#[bg=black fg=white] Restore #[bg=white fg=black bold][`C-s]#[bg=black fg=white] Save#[fg=brightred bg=black] #[fg=white bg=black] #{weather} #[fg=brightred bg=black] #[fg=colour179 bg=black]🖥 CPU:#{cpu_percentage} MEM:#{ram_percentage} #[fg=brightred bg=black] #[fg=white bg=black]📅%Y-%m-%d 🕗%I:%m%p"
|
||||||
set-window-option -g status-right-style "fg=white bg=black"
|
set-window-option -g status-right-style "fg=white bg=black"
|
||||||
# set-option -g status-right
|
# set-option -g status-right
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,27 +3,22 @@
|
||||||
"output": ["HDMI-A-1"],
|
"output": ["HDMI-A-1"],
|
||||||
"layer": "top", // Waybar at top layer
|
"layer": "top", // Waybar at top layer
|
||||||
"position": "top", // Waybar position (top|bottom|left|right)
|
"position": "top", // Waybar position (top|bottom|left|right)
|
||||||
"height": 20, // Waybar height (to be removed for auto height)
|
"height": 30, // Waybar height (to be removed for auto height)
|
||||||
// "width": 1280, // Waybar width
|
// "width": 1280, // Waybar width
|
||||||
"spacing": 10, // Gaps between modules (4px)
|
"spacing": 10, // Gaps between modules (4px)
|
||||||
// Choose the order of the modules
|
// Choose the order of the modules
|
||||||
"modules-left": [
|
"modules-left": [
|
||||||
"hyprland/workspaces",
|
"hyprland/workspaces",
|
||||||
"user",
|
|
||||||
],
|
],
|
||||||
// "modules-center": [
|
"modules-center": [
|
||||||
// "hyprland/window",
|
"hyprland/window",
|
||||||
// ],
|
],
|
||||||
"modules-right": [
|
"modules-right": [
|
||||||
"custom/caspar",
|
|
||||||
"custom/cas01",
|
|
||||||
// "custom/cas02",
|
|
||||||
"custom/packages",
|
"custom/packages",
|
||||||
// "network",
|
"network",
|
||||||
// "cpu",
|
"cpu",
|
||||||
// "memory",
|
"memory",
|
||||||
// "temperature",
|
"temperature",
|
||||||
"custom/weather",
|
|
||||||
"clock"
|
"clock"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
@ -34,21 +29,22 @@
|
||||||
"all-outputs": true,
|
"all-outputs": true,
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"1": "I",
|
"1": "一",
|
||||||
"2": "II",
|
"2": "二",
|
||||||
"3": "III",
|
"3": "三",
|
||||||
"4": "IV",
|
"4": "四",
|
||||||
"5": "V",
|
"5": "五",
|
||||||
"6": "VI",
|
"6": "六",
|
||||||
"7": "VII",
|
"7": "七",
|
||||||
"8": "VIII",
|
"8": "八",
|
||||||
"9": "IX",
|
"9": "九",
|
||||||
"10": "X",
|
"10": "十",
|
||||||
}},
|
}},
|
||||||
|
|
||||||
"hyprland/window": {
|
"hyprland/window": {
|
||||||
"max-length": 20,
|
"max-length": 20,
|
||||||
"min-length": 10
|
"min-length": 10
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"tray": {
|
"tray": {
|
||||||
|
|
@ -59,7 +55,7 @@
|
||||||
"clock": {
|
"clock": {
|
||||||
"interval": 60,
|
"interval": 60,
|
||||||
"timezone": "America/Chicago",
|
"timezone": "America/Chicago",
|
||||||
"format": "{:%I:%M%p}",
|
"format": "{:%I:%M}",
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||||
"format-alt": "{:%Y-%m-%d}"
|
"format-alt": "{:%Y-%m-%d}"
|
||||||
},
|
},
|
||||||
|
|
@ -105,39 +101,8 @@
|
||||||
|
|
||||||
|
|
||||||
"custom/packages": {
|
"custom/packages": {
|
||||||
"format": "{} 📦",
|
"format": "{} 🗁",
|
||||||
"interval": 30,
|
"interval": 30,
|
||||||
"exec": "dnf check-update -q | grep updates | wc -l 2> /dev/null"
|
"exec": "dnf check-update -q | grep updates | wc -l 2> /dev/null"
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/weather": {
|
|
||||||
"format": "{}",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/hypr_weather.sh"
|
|
||||||
},
|
|
||||||
"custom/caspar": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh caspar",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas01": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas01",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas02": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas02",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"user": {
|
|
||||||
"format": "{user} (up {work_d} days ↑)",
|
|
||||||
"interval": 60,
|
|
||||||
"height": 30,
|
|
||||||
"width": 30,
|
|
||||||
"icon": true,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
||||||
// -*- mode: jsonc -*-
|
|
||||||
{
|
|
||||||
"output": ["HDMI-A-1"],
|
|
||||||
"layer": "top", // Waybar at top layer
|
|
||||||
"position": "top", // Waybar position (top|bottom|left|right)
|
|
||||||
"height": 30, // Waybar height (to be removed for auto height)
|
|
||||||
// "width": 1280, // Waybar width
|
|
||||||
"spacing": 10, // Gaps between modules (4px)
|
|
||||||
// Choose the order of the modules
|
|
||||||
"modules-left": [
|
|
||||||
"hyprland/workspaces",
|
|
||||||
],
|
|
||||||
"modules-center": [
|
|
||||||
"hyprland/window",
|
|
||||||
],
|
|
||||||
"modules-right": [
|
|
||||||
"custom/caspar",
|
|
||||||
"custom/cas01",
|
|
||||||
"custom/cas02",
|
|
||||||
"custom/packages",
|
|
||||||
"network",
|
|
||||||
"cpu",
|
|
||||||
"memory",
|
|
||||||
"temperature",
|
|
||||||
"clock"
|
|
||||||
],
|
|
||||||
|
|
||||||
|
|
||||||
// Modules configuration
|
|
||||||
"hyprland/workspaces": {
|
|
||||||
"active-only": false,
|
|
||||||
"all-outputs": true,
|
|
||||||
"format": "{icon}",
|
|
||||||
"format-icons": {
|
|
||||||
"1": "一",
|
|
||||||
"2": "二",
|
|
||||||
"3": "三",
|
|
||||||
"4": "四",
|
|
||||||
"5": "五",
|
|
||||||
"6": "六",
|
|
||||||
"7": "七",
|
|
||||||
"8": "八",
|
|
||||||
"9": "九",
|
|
||||||
"10": "十",
|
|
||||||
}},
|
|
||||||
|
|
||||||
"hyprland/window": {
|
|
||||||
"max-length": 20,
|
|
||||||
"min-length": 10
|
|
||||||
},
|
|
||||||
|
|
||||||
"tray": {
|
|
||||||
// "icon-size": 21,
|
|
||||||
"spacing": 10
|
|
||||||
},
|
|
||||||
|
|
||||||
"clock": {
|
|
||||||
"interval": 60,
|
|
||||||
"timezone": "America/Chicago",
|
|
||||||
"format": "{:%I:%M}",
|
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
||||||
"format-alt": "{:%Y-%m-%d}"
|
|
||||||
},
|
|
||||||
|
|
||||||
"cpu": {
|
|
||||||
"format": "{usage}% ",
|
|
||||||
"tooltip": false
|
|
||||||
},
|
|
||||||
|
|
||||||
"memory": {
|
|
||||||
"format": "{}% "
|
|
||||||
},
|
|
||||||
|
|
||||||
"network": {
|
|
||||||
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
|
||||||
"format-wifi": "{essid} ({signalStrength}%) ",
|
|
||||||
"format-ethernet": "{ipaddr}/{cidr} 🖧",
|
|
||||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
|
||||||
"format-linked": "{ifname} (No IP) ",
|
|
||||||
"format-disconnected": "Disconnected ⚠",
|
|
||||||
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
|
||||||
},
|
|
||||||
|
|
||||||
"pulseaudio": {
|
|
||||||
// "scroll-step": 1, // %, can be a float
|
|
||||||
"format": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth-muted": " {icon} {format_source}",
|
|
||||||
"format-muted": " {format_source}",
|
|
||||||
"format-source": "{volume}% ",
|
|
||||||
"format-source-muted": "",
|
|
||||||
"format-icons": {
|
|
||||||
"headphone": "",
|
|
||||||
"hands-free": "",
|
|
||||||
"headset": "",
|
|
||||||
"phone": "",
|
|
||||||
"portable": "",
|
|
||||||
"car": "",
|
|
||||||
"default": ["", "", ""]
|
|
||||||
},
|
|
||||||
"on-click": "pavucontrol"
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
"custom/packages": {
|
|
||||||
"format": "{} 🗁",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "dnf check-update -q | grep updates | wc -l 2> /dev/null"
|
|
||||||
},
|
|
||||||
|
|
||||||
"custom/caspar": {
|
|
||||||
"format": "{} 🗁",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh caspar",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas01": {
|
|
||||||
"format": "{} 🗁",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas01",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas02": {
|
|
||||||
"format": "{} 🗁",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas02",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
||||||
// -*- mode: jsonc -*-
|
|
||||||
{
|
|
||||||
"output": ["HDMI-A-1"],
|
|
||||||
"layer": "top", // Waybar at top layer
|
|
||||||
"position": "top", // Waybar position (top|bottom|left|right)
|
|
||||||
"height": 20, // Waybar height (to be removed for auto height)
|
|
||||||
// "width": 1280, // Waybar width
|
|
||||||
"spacing": 10, // Gaps between modules (4px)
|
|
||||||
// Choose the order of the modules
|
|
||||||
"modules-left": [
|
|
||||||
"hyprland/workspaces",
|
|
||||||
],
|
|
||||||
// "modules-center": [
|
|
||||||
// "hyprland/window",
|
|
||||||
// ],
|
|
||||||
"modules-right": [
|
|
||||||
"custom/caspar",
|
|
||||||
"custom/cas01",
|
|
||||||
// "custom/cas02",
|
|
||||||
"custom/packages",
|
|
||||||
"network",
|
|
||||||
"cpu",
|
|
||||||
"memory",
|
|
||||||
"temperature",
|
|
||||||
"clock"
|
|
||||||
],
|
|
||||||
|
|
||||||
|
|
||||||
// Modules configuration
|
|
||||||
"hyprland/workspaces": {
|
|
||||||
"active-only": false,
|
|
||||||
"all-outputs": true,
|
|
||||||
"format": "{icon}",
|
|
||||||
"format-icons": {
|
|
||||||
"1": "I",
|
|
||||||
"2": "II",
|
|
||||||
"3": "III",
|
|
||||||
"4": "IV",
|
|
||||||
"5": "V",
|
|
||||||
"6": "VI",
|
|
||||||
"7": "VII",
|
|
||||||
"8": "VIII",
|
|
||||||
"9": "IX",
|
|
||||||
"10": "X",
|
|
||||||
}},
|
|
||||||
|
|
||||||
"hyprland/window": {
|
|
||||||
"max-length": 20,
|
|
||||||
"min-length": 10
|
|
||||||
},
|
|
||||||
|
|
||||||
"tray": {
|
|
||||||
// "icon-size": 21,
|
|
||||||
"spacing": 10
|
|
||||||
},
|
|
||||||
|
|
||||||
"clock": {
|
|
||||||
"interval": 60,
|
|
||||||
"timezone": "America/Chicago",
|
|
||||||
"format": "{:%I:%M}",
|
|
||||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
||||||
"format-alt": "{:%Y-%m-%d}"
|
|
||||||
},
|
|
||||||
|
|
||||||
"cpu": {
|
|
||||||
"format": "{usage}% ",
|
|
||||||
"tooltip": false
|
|
||||||
},
|
|
||||||
|
|
||||||
"memory": {
|
|
||||||
"format": "{}% "
|
|
||||||
},
|
|
||||||
|
|
||||||
"network": {
|
|
||||||
// "interface": "wlp2*", // (Optional) To force the use of this interface
|
|
||||||
"format-wifi": "{essid} ({signalStrength}%) ",
|
|
||||||
"format-ethernet": "{ipaddr}/{cidr} 🖧",
|
|
||||||
"tooltip-format": "{ifname} via {gwaddr} ",
|
|
||||||
"format-linked": "{ifname} (No IP) ",
|
|
||||||
"format-disconnected": "Disconnected ⚠",
|
|
||||||
"format-alt": "{ifname}: {ipaddr}/{cidr}"
|
|
||||||
},
|
|
||||||
|
|
||||||
"pulseaudio": {
|
|
||||||
// "scroll-step": 1, // %, can be a float
|
|
||||||
"format": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
|
||||||
"format-bluetooth-muted": " {icon} {format_source}",
|
|
||||||
"format-muted": " {format_source}",
|
|
||||||
"format-source": "{volume}% ",
|
|
||||||
"format-source-muted": "",
|
|
||||||
"format-icons": {
|
|
||||||
"headphone": "",
|
|
||||||
"hands-free": "",
|
|
||||||
"headset": "",
|
|
||||||
"phone": "",
|
|
||||||
"portable": "",
|
|
||||||
"car": "",
|
|
||||||
"default": ["", "", ""]
|
|
||||||
},
|
|
||||||
"on-click": "pavucontrol"
|
|
||||||
},
|
|
||||||
|
|
||||||
|
|
||||||
"custom/packages": {
|
|
||||||
"format": "{} 📦",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "dnf check-update -q | grep updates | wc -l 2> /dev/null"
|
|
||||||
},
|
|
||||||
|
|
||||||
"custom/caspar": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh caspar",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas01": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas01",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
"custom/cas02": {
|
|
||||||
"format": "{} 🖥",
|
|
||||||
"interval": 30,
|
|
||||||
"exec": "~/scripts/check_server_status.sh cas02",
|
|
||||||
"return-type": "json"
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
@ -1,13 +1,11 @@
|
||||||
* {
|
* {
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
/* `otf-font-awesome` is required to be installed for icons */
|
||||||
font-family: Courier;
|
font-family: Courier, FontAwesome;
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
font-weight: bold;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: #ccc;
|
background: transparent;
|
||||||
border: 1px solid #1d1e21;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar.hidden {
|
window#waybar.hidden {
|
||||||
|
|
@ -15,7 +13,6 @@ window#waybar.hidden {
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces,
|
#workspaces,
|
||||||
#user,
|
|
||||||
#window,
|
#window,
|
||||||
#pulseaudio,
|
#pulseaudio,
|
||||||
#network,
|
#network,
|
||||||
|
|
@ -23,40 +20,28 @@ window#waybar.hidden {
|
||||||
#memory,
|
#memory,
|
||||||
#temperature,
|
#temperature,
|
||||||
#clock,
|
#clock,
|
||||||
#custom-caspar,
|
#custom-packages
|
||||||
#custom-cas01,
|
|
||||||
#custom-cas02,
|
|
||||||
#custom-packages,
|
|
||||||
#custom-weather
|
|
||||||
{
|
{
|
||||||
margin-top: 4px;
|
margin-top: 2px;
|
||||||
margin-bottom: 4px;
|
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
|
||||||
padding-top: 0px;
|
padding-top: 0px;
|
||||||
padding-bottom: 0px;
|
padding-bottom: 0px;
|
||||||
padding-left: 10px;
|
padding-left: 20px;
|
||||||
padding-right: 10px;
|
padding-right: 20px;
|
||||||
|
|
||||||
border-radius: 5px;
|
border-radius: 26px;
|
||||||
transition: none;
|
transition: none;
|
||||||
color: #1d1e21;
|
color: #f8f8f2;
|
||||||
background: rgba(255, 255, 255, 0.2);
|
background: rgba(255, 255, 255, 0.2);
|
||||||
border: 2px solid black;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock{
|
|
||||||
margin-right: 7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces{
|
|
||||||
margin-left: 7px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
transition: none;
|
transition: none;
|
||||||
color: #1d1e21;
|
color: #f8f8f2;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
@ -68,14 +53,7 @@ window#waybar.hidden {
|
||||||
|
|
||||||
#workspaces button.active {
|
#workspaces button.active {
|
||||||
transition: none;
|
transition: none;
|
||||||
color: #ccc;
|
color: #020202;
|
||||||
/* background: rgba(255, 255, 255, 0.6); */
|
background: rgba(255, 255, 255, 0.6);
|
||||||
background: #1d1e21;
|
border-radius: 26px;
|
||||||
border-radius: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-caspar.offline,
|
|
||||||
#custom-cas01.offline,
|
|
||||||
#custom-cas02.offline {
|
|
||||||
background: red;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,68 +0,0 @@
|
||||||
* {
|
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
|
||||||
font-family: Courier, FontAwesome;
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.hidden {
|
|
||||||
opacity: 0.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces,
|
|
||||||
#window,
|
|
||||||
#pulseaudio,
|
|
||||||
#network,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#temperature,
|
|
||||||
#clock,
|
|
||||||
#custom-caspar,
|
|
||||||
#custom-cas01,
|
|
||||||
#custom-cas02,
|
|
||||||
#custom-packages
|
|
||||||
{
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 0px;
|
|
||||||
margin-bottom: 0px;
|
|
||||||
|
|
||||||
padding-top: 0px;
|
|
||||||
padding-bottom: 0px;
|
|
||||||
padding-left: 20px;
|
|
||||||
padding-right: 20px;
|
|
||||||
|
|
||||||
border-radius: 26px;
|
|
||||||
transition: none;
|
|
||||||
color: #f8f8f2;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
transition: none;
|
|
||||||
color: #f8f8f2;
|
|
||||||
background: transparent;
|
|
||||||
font-size: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
|
||||||
color: #9aedfe;
|
|
||||||
background: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
transition: none;
|
|
||||||
color: #020202;
|
|
||||||
background: rgba(255, 255, 255, 0.6);
|
|
||||||
border-radius: 26px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-caspar.offline,
|
|
||||||
#custom-cas01.offline,
|
|
||||||
#custom-cas02.offline {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
||||||
* {
|
|
||||||
/* `otf-font-awesome` is required to be installed for icons */
|
|
||||||
font-family: Courier, FontAwesome;
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar {
|
|
||||||
background: #1d1e21;
|
|
||||||
/* border: 1px solid red; */
|
|
||||||
}
|
|
||||||
|
|
||||||
window#waybar.hidden {
|
|
||||||
opacity: 0.2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces,
|
|
||||||
#window,
|
|
||||||
#pulseaudio,
|
|
||||||
#network,
|
|
||||||
#cpu,
|
|
||||||
#memory,
|
|
||||||
#temperature,
|
|
||||||
#clock,
|
|
||||||
#custom-caspar,
|
|
||||||
#custom-cas01,
|
|
||||||
#custom-cas02,
|
|
||||||
#custom-packages
|
|
||||||
{
|
|
||||||
margin-top: 2px;
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 0px;
|
|
||||||
margin-bottom: 4px;
|
|
||||||
|
|
||||||
padding-top: 0px;
|
|
||||||
padding-bottom: 0px;
|
|
||||||
padding-left: 10px;
|
|
||||||
padding-right: 20px;
|
|
||||||
|
|
||||||
/* border-radius: 26px; */
|
|
||||||
transition: none;
|
|
||||||
color: #f8f8f2;
|
|
||||||
background: rgba(255, 255, 255, 0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#workspaces button {
|
|
||||||
transition: none;
|
|
||||||
color: #f8f8f2;
|
|
||||||
background: transparent;
|
|
||||||
font-size: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.focused {
|
|
||||||
color: #9aedfe;
|
|
||||||
background: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
#workspaces button.active {
|
|
||||||
transition: none;
|
|
||||||
color: #020202;
|
|
||||||
background: rgba(255, 255, 255, 0.6);
|
|
||||||
border-radius: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-caspar.offline,
|
|
||||||
#custom-cas01.offline,
|
|
||||||
#custom-cas02.offline {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
34
zsh/.zshrc
34
zsh/.zshrc
|
|
@ -1,5 +1,15 @@
|
||||||
# prompt
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
||||||
export PS1="%{%F{226}%}%n%{%F{220}%}@%{%F{214}%}%m %{%F{33}%}%1~ %{%f%}$ "
|
# 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
|
||||||
|
|
||||||
|
# import keys
|
||||||
|
if [ -f ~/.keys ]; then
|
||||||
|
. ~/.keys
|
||||||
|
echo "keys loaded"
|
||||||
|
fi
|
||||||
|
|
||||||
# aliases
|
# aliases
|
||||||
# alias python="/Library/Frameworks/Python.framework/Versions/3.10/bin/python3"
|
# alias python="/Library/Frameworks/Python.framework/Versions/3.10/bin/python3"
|
||||||
|
|
@ -42,6 +52,12 @@ compinit
|
||||||
_comp_options+=(globdots)
|
_comp_options+=(globdots)
|
||||||
zstyle ':completion:*' menu select
|
zstyle ':completion:*' menu select
|
||||||
|
|
||||||
|
# start power theme
|
||||||
|
source ~/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
|
|
||||||
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
# auto cd
|
# auto cd
|
||||||
setopt auto_cd
|
setopt auto_cd
|
||||||
|
|
||||||
|
|
@ -55,16 +71,4 @@ eval "$(pyenv init --path)"
|
||||||
eval "$(pyenv init -)"
|
eval "$(pyenv init -)"
|
||||||
# eval "$(pyenv virtualenv-init -)"
|
# eval "$(pyenv virtualenv-init -)"
|
||||||
|
|
||||||
|
source ~/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
# fzf
|
|
||||||
export FZF_DEFAULT_OPTS='--layout=reverse --height=50% --preview-window=right:50%:border-sharp --border-label=" command preview " --border=double'
|
|
||||||
|
|
||||||
# Set up fzf key bindings and fuzzy completion
|
|
||||||
# Ctrl+R override for bash history
|
|
||||||
# Alt-C overried to cd into selected directory
|
|
||||||
eval "$(fzf --zsh)"
|
|
||||||
|
|
||||||
# Quick file finder with preview and open with vim (Ctrl+T override)
|
|
||||||
# bind '"\C-t": "fzf --preview \"cat {}\" < <(find . -type f) | xargs $EDITOR\n"'
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue