Compare commits

...

4 Commits

32 changed files with 1906 additions and 7 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
*/colors.css
*/colors.conf
backups/

View File

@@ -57,8 +57,8 @@ mv ~/scripts/waybar/waybar_sway_config.json ~/scripts/waybar/config
```bash
ln -sf ~/scripts/i3 ~/.config/i3
ln -sf ~/scripts/i3/i3blocks.conf ~/.config/i3blocks/config
ln -sf ~/scripts/i3/i3status.conf ~/.config/i3status/config
ln -sf ~/scripts/i3blocks ~/.config/i3blocks
ln -sf ~/scripts/i3status ~/.config/i3status
```
### Cursor
@@ -162,6 +162,7 @@ Prefix is <kbd>Ctrl</kbd> + <kbd>f</kbd>.
| `Prefix + g` | Split horizontal |
| `Prefix + v` | Split vertical |
| `Prefix + h/j/k/l` | Select pane |
| `Prefix + J/K` | Swap pane down/up |
| `Prefix + Ctrl + H/J/K/L` | Resize pane |
| `Prefix + 1-0` | Select window 1-10 |
| `Alt + 1-0` | Create window 1-10 |
@@ -171,6 +172,8 @@ Prefix is <kbd>Ctrl</kbd> + <kbd>f</kbd>.
| `Prefix + [` / `]` | Copy mode / Paste |
| `Prefix + r` | Refresh |
| `Prefix + R` | Reload config |
| `Prefix + Space` | Send prefix (nested tmux) |
| `Prefix + ?` | List keys |
| `Prefix + Ctrl + s` | Save session (resurrect) |
| `Prefix + Ctrl + r` | Restore session (resurrect) |

377
hypr/base Normal file
View File

@@ -0,0 +1,377 @@
# Hyprland config - converted from i3 config by Adam French
# https://wiki.hyprland.org/Configuring/
################
### MONITORS ###
################
monitor=,preferred,auto,1
###################
### MY PROGRAMS ###
###################
$terminal = kitty
$fileManager = kitty -e ranger
$menu = wofi --show run
###################
### CURSOR ###
###################
env = XCURSOR_THEME,Miku Cursor
env = XCURSOR_SIZE,48
env = HYPRCURSOR_SIZE,48
#################
### AUTOSTART ###
#################
exec-once = fcitx5
exec-once = /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
exec-once = nm-applet
exec-once = wl-paste --watch cliphist store
exec-once = dunst
exec-once = hypridle # replaces xautolock; configure lock in hypridle.conf
exec-once = waterfox
exec-once = steam
exec-once = surfshark
exec-once = waybar
# exec-once = volctl # may need a Wayland-compatible tray volume tool
# exec-once = pamac-tray # check for Wayland support
# NOTE: ff-theme-util and fix_xcursor are X11-specific; drop or find Wayland equivalents
# Caps<->Escape swap is handled below via input config
#############################
### ENVIRONMENT VARIABLES ###
#############################
#####################
### LOOK AND FEEL ###
#####################
general {
gaps_in = 5 # inner gaps (i3: gaps inner 10 → split between two sides)
gaps_out = 0 # outer gaps (i3: gaps outer 0)
border_size = 1
col.active_border = $color_primary
col.inactive_border = $color_gray
resize_on_border = true
allow_tearing = false
layout = master # closest to i3's stacking default; use dwindle for split
}
decoration {
rounding = 0
active_opacity = 1.0
inactive_opacity = 1.0
shadow {
enabled = false
}
blur {
enabled = true
size = 3
passes = 1
}
}
animations {
enabled = true
bezier = myBezier, 0.645, 0.045, 0.355, 1.000
animation = windows, 1, 7, myBezier
animation = windowsOut, 1, 7, myBezier
animation = border, 1, 10, myBezier
animation = borderangle, 1, 8, myBezier
animation = fade, 1, 7, myBezier
animation = workspaces, 1, 6, myBezier
}
master {
new_status = slave
}
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
focus_on_activate = true # replaces i3's "for_window [urgent=latest] focus"
}
#############
### INPUT ###
#############
input {
kb_layout = gb
kb_options = caps:swapescape
follow_mouse = 1
sensitivity = 0
}
###################
### KEYBINDINGS ###
###################
$mod = SUPER
# Terminal
bind = $mod, Return, exec, $terminal
# Kill focused window
bind = $mod SHIFT, Q, killactive
# Launcher (wofi replaces dmenu)
bind = $mod, D, exec, wofi --show run --style ~/scripts/wofi/style.css
# To approximate your dmenu colors, configure wofi's style.css
# Pavucontrol
bind = $mod CTRL, M, exec, pavucontrol
# Applications
bind = $mod, F2, exec, waterfox
bind = $mod, F3, exec, $fileManager
bind = $mod SHIFT, F3, exec, pcmanfm
bind = $mod, F5, exec, kitty -e mocp
# Compositor toggle (picom → hyprland manages its own compositor; these are no-ops)
# bind = $mod, T, exec, pkill picom
# bind = $mod CTRL, T, exec, picom -b
# Restart dunst
bind = $mod SHIFT, D, exec, killall dunst && notify-send 'restart dunst'
# Screenshots (flameshot on Wayland needs -g flag or use grim/slurp instead)
bind = , Print, exec, flameshot gui
bind = $mod, Print, exec, grim -g "$(slurp)" - | wl-copy
bind = $mod SHIFT, Print, exec, grim -g "$(slurp)" ~/screenshot.png
# Xkill equivalent
bind = $mod CTRL, X, exec, hyprctl kill
# Lock screen
bind = $mod, 9, exec, hyprlock # replaces blurlock; configure hyprlock separately
# Toggle bar visibility (waybar)
bind = $mod, M, exec, pkill -SIGUSR1 waybar
# Reload Hyprland config
bind = $mod SHIFT, C, exec, hyprctl reload
# Exit Hyprland
bind = $mod SHIFT, E, exec, hyprctl dispatch exit
# System mode (replaces i3's $mode_system)
# Simple submap equivalent:
bind = $mod, 0, submap, system
submap = system
bind = , L, exec, hyprlock
bind = , L, submap, reset
bind = , S, exec, systemctl suspend
bind = , S, submap, reset
bind = , H, exec, systemctl hibernate
bind = , H, submap, reset
bind = , R, exec, systemctl reboot
bind = , R, submap, reset
bind = SHIFT, S, exec, systemctl poweroff
bind = SHIFT, S, submap, reset
bind = , E, exec, hyprctl dispatch exit
bind = , E, submap, reset
bind = , Return, submap, reset
bind = , Escape, submap, reset
submap = reset
# --- FOCUS ---
bind = $mod, H, movefocus, l
bind = $mod, J, movefocus, d
bind = $mod, K, movefocus, u
bind = $mod, L, movefocus, r
bind = $mod, left, movefocus, l
bind = $mod, down, movefocus, d
bind = $mod, up, movefocus, u
bind = $mod, right, movefocus, r
# --- MOVE WINDOWS ---
bind = $mod SHIFT, H, movewindow, l
bind = $mod SHIFT, J, movewindow, d
bind = $mod SHIFT, K, movewindow, u
bind = $mod SHIFT, L, movewindow, r
bind = $mod SHIFT, left, movewindow, l
bind = $mod SHIFT, down, movewindow, d
bind = $mod SHIFT, up, movewindow, u
bind = $mod SHIFT, right, movewindow, r
# --- FLOATING ---
bind = $mod SHIFT, space, togglefloating
bind = $mod, space, focusurgentorlast # approximate focus mode_toggle
# --- FULLSCREEN ---
bind = $mod, F, fullscreen, 0
# --- SPLIT / LAYOUT ---
# Hyprland uses dwindle preselect or master swaps; approximate below:
bind = $mod, G, layoutmsg, orientationleft # tile horizontally
bind = $mod, V, layoutmsg, orientationbottom # tile vertically
bind = $mod, E, layoutmsg, togglesplit
bind = $mod, w, exec, hyprctl dispatch togglegroup
# --- STICKY (pin floating window) ---
bind = $mod SHIFT, S, pin
# --- SCRATCHPAD ---
bind = $mod SHIFT, minus, movetoworkspacesilent, special:scratchpad
bind = $mod, minus, togglespecialworkspace, scratchpad
# --- WORKSPACE NAVIGATION ---
bind = $mod CTRL, right, workspace, +1
bind = $mod CTRL, left, workspace, -1
bind = $mod, B, workspace, previous # back_and_forth
# Switch to workspace
bind = $mod, 1, workspace, 1
bind = $mod, 2, workspace, 2
bind = $mod, 3, workspace, 3
bind = $mod, 4, workspace, 4
bind = $mod, 5, workspace, 5
bind = $mod, 6, workspace, 6
bind = $mod, 7, workspace, 7
bind = $mod, 8, workspace, 8
# Move container to workspace (silent = don't follow)
bind = $mod CTRL, 1, movetoworkspacesilent, 1
bind = $mod CTRL, 2, movetoworkspacesilent, 2
bind = $mod CTRL, 3, movetoworkspacesilent, 3
bind = $mod CTRL, 4, movetoworkspacesilent, 4
bind = $mod CTRL, 5, movetoworkspacesilent, 5
bind = $mod CTRL, 6, movetoworkspacesilent, 6
bind = $mod CTRL, 7, movetoworkspacesilent, 7
bind = $mod CTRL, 8, movetoworkspacesilent, 8
# Move to workspace AND follow (replaces $mod+Shift+N in i3)
bind = $mod SHIFT, 1, movetoworkspace, 1
bind = $mod SHIFT, 2, movetoworkspace, 2
bind = $mod SHIFT, 3, movetoworkspace, 3
bind = $mod SHIFT, 4, movetoworkspace, 4
bind = $mod SHIFT, 5, movetoworkspace, 5
bind = $mod SHIFT, 6, movetoworkspace, 6
bind = $mod SHIFT, 7, movetoworkspace, 7
bind = $mod SHIFT, 8, movetoworkspace, 8
# --- RESIZE SUBMAP ---
bind = $mod, R, submap, resize
submap = resize
binde = , H, resizeactive, -20 0
binde = , J, resizeactive, 0 20
binde = , K, resizeactive, 0 -20
binde = , L, resizeactive, 20 0
binde = , left, resizeactive, -30 0
binde = , down, resizeactive, 0 30
binde = , up, resizeactive, 0 -30
binde = , right, resizeactive, 30 0
bind = , Return, submap, reset
bind = , Escape, submap, reset
submap = reset
# --- MOUSE BINDS ---
bindm = $mod, mouse:272, movewindow # mod+LMB drag to move floating
bindm = $mod, mouse:273, resizewindow # mod+RMB drag to resize
# --- AUDIO ---
bindel = , XF86AudioRaiseVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ +10%
bindel = , XF86AudioLowerVolume, exec, pactl set-sink-volume @DEFAULT_SINK@ -10%
bindl = , XF86AudioMute, exec, pactl set-sink-mute @DEFAULT_SINK@ toggle
bindl = , XF86AudioMicMute, exec, pactl set-source-mute @DEFAULT_SOURCE@ toggle
# --- BRIGHTNESS ---
bindel = , XF86MonBrightnessUp, exec, brightnessctl set +5%
bindel = , XF86MonBrightnessDown, exec, brightnessctl set 5%-
####################
### WINDOW RULES ###
####################
windowrule {
name = Surfshark
match:class = ^(Surfshark)$
workspace = 8 silent
tile = on
}
windowrule {
name = pavucontrol
match:class = ^(pavucontrol)$
float = on
}
windowrule {
name = Lxappearance
match:class = ^(Lxappearance)$
float = on
}
windowrule {
name = PiP
match:title = ^(Picture-in-Picture)$
float = off
}
##############################
### WORKSPACE NAMES / ICONS ##
##############################
# Hyprland workspace names (replaces i3 set $ws variables)
# These are used by waybar's workspaces module — configure names there.
# ws1=ツ ws2=ಠ‿ಠ ws3=◕‿◕ ws4=ʘ‿ʘ
# ws5=˘◡˘ ws6=◠‿◠ ws7=ᵔᴥᵔ ws8=æ
##############################
### COLORS (reference only) ##
##############################
# Your theme palette for use in waybar / wofi CSS:
# Background: #1b110e
# BG Secondary: #000000
# Primary: #55ffbb (green)
# Secondary: #62ff57 (lime)
# Tertiary: #ff579a (pink)
# Quaternary: #024942 (dark teal)
# Link: #222222
#####################################
### NOTES ON MIGRATING FROM i3 ##
#####################################
# 1. BAR: Replace i3bar+i3status with waybar. Copy the color palette above
# into your waybar style.css. Workspace icon names go in waybar config.
#
# 2. LOCK: Replace blurlock with hyprlock. Configure in ~/.config/hypr/hyprlock.conf
# Replace xautolock with hypridle in ~/.config/hypr/hypridle.conf (30 min timeout).
#
# 3. LAUNCHER: wofi replaces dmenu. Style with ~/.config/wofi/style.css using
# your palette colors above.
#
# 4. SCREENSHOTS: grim + slurp replace i3-scrot on Wayland. flameshot also
# works with the -g flag on some setups.
#
# 5. STACKING layout: Set layout = master above (or dwindle). Hyprland has no
# direct stacking mode; use floating or master layout as closest equivalent.
#
# 6. GAP MODE: Replace the i3-gaps mode with direct hyprctl commands if needed:
# hyprctl keyword general:gaps_in 10
#
# 7. BORDER TOGGLE ($mod+u/y/n): Use windowrulev2 or hyprctl at runtime:
# hyprctl keyword general:border_size 0

4
hypr/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.conf base > hyprland.conf

View File

@@ -1,7 +1,16 @@
$color_primary = rgb(55ffbb)
$color_secondary = rgb(62ff57)
$color_tertiary = rgb(ff579a)
$color_bg = rgb(1b110e)
$color_bg_secondary = rgb(000000)
$color_alt_bg = rgb(024942)
$color_gray = rgb(222222)
$color_text_light = rgb(F0F0F0)
$color_text_dark = rgb(1b110e)
$color_white = rgb(FFFFFF)
# Hyprland config - converted from i3 config by Adam French
# https://wiki.hyprland.org/Configuring/
source = ~/scripts/hypr/colors.conf
################
### MONITORS ###

374
i3/base Normal file
View File

@@ -0,0 +1,374 @@
# This is my personal personal i3 config file! - Adam French
# WORKSPACE NAMES -----------------------------------
set $ws1 1:ツ
set $ws2 2:ಠ‿ಠ
set $ws3 3:◕‿◕
set $ws4 4:ʘ‿ʘ
set $ws5 5:˘◡˘
set $ws6 6:◠‿◠
set $ws7 7:ᵔᴥᵔ
set $ws8 8:æ
# DEFAULT STARTUP --------------------------------------
exec --no-startup-id setxkbmap -option caps:swapescape
exec --no-startup-id volctl
exec --no-startup-id fcitx5
exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
# exec --no-startup-id manjaro-hello
exec --no-startup-id nm-applet
exec --no-startup-id pamac-tray
exec --no-startup-id clipit
exec --no-startup-id dunst
exec --no-startup-id xautolock -time 30 -locker blurlock
# exec --no-startup-id nitrogen ~/scripts/background.jpg
# exec --no-startup-id blueman-applet
# exec_always --no-startup-id sbxkb
# exec --no-startup-id start_conky_maia
# exec --no-startup-id start_conky_green
exec --no-startup-id waterfox
exec --no-startup-id steam
exec --no-startup-id surfshark
# PACTL BINDINGS ---------------------------------------
set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10%
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle
# BRIGHTNESSCTL BINDINGS ----------------------------------
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set +5%
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 5%-
# DEFAULT WINDOW LAYOUT -------------------------------------
# set default desktop layout (default is tiling)
workspace_layout stacking
# Configure border style <normal|1pixel|pixel xx|none|pixel>
default_border pixel 1
default_floating_border normal
# Hide borders
hide_edge_borders none
# KEYBINDS --------------------------------------------------
# Set mod key (Mod1=<Alt>, Mod4=<Super>)
set $mod Mod4
# change borders
bindsym $mod+u border none
bindsym $mod+y border pixel 1
bindsym $mod+n border normal
# Use Mouse+$mod to drag floating windows
floating_modifier $mod
# start a terminal
bindsym $mod+Return exec kitty
# kill focused window
bindsym $mod+Shift+q kill
# start program launcher
bindsym $mod+d exec --no-startup-id dmenu_run -nb '$color_bg' -sf '$color_tertiary' -sb '$color_bg' -nf '$color_primary'
bindsym $mod+Ctrl+m exec pavucontrol
# Start Applications
bindsym $mod+F2 exec waterfox
# bindsym $mod+F3 exec pcmanfm
bindsym $mod+F3 exec kitty -e ranger
bindsym $mod+Shift+F3 exec pcmanfm_pkexec
bindsym $mod+F5 exec kitty -e 'mocp'
bindsym $mod+t exec --no-startup-id pkill picom
bindsym $mod+Ctrl+t exec --no-startup-id picom -b
bindsym $mod+Shift+d --release exec "killall dunst; exec notify-send 'restart dunst'"
bindsym Print exec flameshot gui
bindsym $mod+Print --release exec --no-startup-id i3-scrot -w
bindsym $mod+Shift+Print --release exec --no-startup-id i3-scrot -s
# bindsym $mod+Shift+h exec xdg-open /usr/share/doc/manjaro/i3_help.pdf
bindsym $mod+Ctrl+x --release exec --no-startup-id xkill
focus_follows_mouse yes
# change focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# workspace back and forth (with/without active container)
workspace_auto_back_and_forth yes
bindsym $mod+b workspace back_and_forth
bindsym $mod+Shift+b move container to workspace back_and_forth; workspace back_and_forth
# split orientation
bindsym $mod+g split h;exec notify-send 'tile horizontally'
bindsym $mod+v split v;exec notify-send 'tile vertically'
bindsym $mod+q split toggle
# toggle fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking;exec notify-send 'layout stacking'
bindsym $mod+w layout tabbed; exec notify-send 'layout tabbed'
bindsym $mod+e layout toggle split; exec notify-send 'layout split'
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle
# toggle sticky
bindsym $mod+Shift+s sticky toggle
# focus the parent container
bindsym $mod+a focus parent
# move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
# If there are multiple scratchpad windows, this command cycles through them.
bindsym $mod+minus scratchpad show
#navigate workspaces next / previous
bindsym $mod+Ctrl+Right workspace next
bindsym $mod+Ctrl+Left workspace prev
# switch to workspace
bindsym $mod+1 workspace $ws1
bindsym $mod+2 workspace $ws2
bindsym $mod+3 workspace $ws3
bindsym $mod+4 workspace $ws4
bindsym $mod+5 workspace $ws5
bindsym $mod+6 workspace $ws6
bindsym $mod+7 workspace $ws7
bindsym $mod+8 workspace $ws8
# Move focused container to workspace
bindsym $mod+Ctrl+1 move container to workspace $ws1
bindsym $mod+Ctrl+2 move container to workspace $ws2
bindsym $mod+Ctrl+3 move container to workspace $ws3
bindsym $mod+Ctrl+4 move container to workspace $ws4
bindsym $mod+Ctrl+5 move container to workspace $ws5
bindsym $mod+Ctrl+6 move container to workspace $ws6
bindsym $mod+Ctrl+7 move container to workspace $ws7
bindsym $mod+Ctrl+8 move container to workspace $ws8
# Move to workspace with focused container
bindsym $mod+Shift+1 move container to workspace $ws1;
bindsym $mod+Shift+2 move container to workspace $ws2;
bindsym $mod+Shift+3 move container to workspace $ws3;
bindsym $mod+Shift+4 move container to workspace $ws4;
bindsym $mod+Shift+5 move container to workspace $ws5;
bindsym $mod+Shift+6 move container to workspace $ws6;
bindsym $mod+Shift+7 move container to workspace $ws7;
bindsym $mod+Shift+8 move container to workspace $ws8;
# reload the configuration file
bindsym $mod+Shift+c reload
# restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
bindsym $mod+Shift+r restart
# exit i3 (logs you out of your X session)
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
# Set shut down, restart and locking features
bindsym $mod+0 mode "$mode_system"
set $mode_system (l)ock, (e)xit, switch_(u)ser, (s)uspend, (h)ibernate, (r)eboot, (Shift+s)hutdown
mode "$mode_system" {
bindsym l exec --no-startup-id i3exit lock, mode "default"
bindsym s exec --no-startup-id i3exit suspend, mode "default"
bindsym u exec --no-startup-id i3exit switch_user, mode "default"
bindsym e exec --no-startup-id i3exit logout, mode "default"
bindsym h exec --no-startup-id i3exit hibernate, mode "default"
bindsym r exec --no-startup-id i3exit reboot, mode "default"
bindsym Shift+s exec --no-startup-id i3exit shutdown, mode "default"
# exit system mode: "Enter" or "Escape"
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Resize window (you can also use the mouse for that)
bindsym $mod+r mode "resize"
mode "resize" {
# These bindings trigger as soon as you enter the resize mode
# Pressing left will shrink the windows width.
# Pressing right will grow the windows width.
# Pressing up will shrink the windows height.
# Pressing down will grow the windows height.
bindsym h resize shrink width 5 px or 5 ppt
bindsym j resize grow height 5 px or 5 ppt
bindsym k resize shrink height 5 px or 5 ppt
bindsym l resize grow width 5 px or 5 ppt
# same bindings, but for the arrow keys
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
# exit resize mode: Enter or Escape
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Press $mod+Shift+g to enter the gap mode. Choose o or i for modifying outer/inner gaps. Press one of + / - (in-/decrement for current workspace) or 0 (remove gaps for current workspace). If you also press Shift with these keys, the change will be global for all workspaces.
set $mode_gaps Gaps: (o) outer, (i) inner
set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
bindsym $mod+Shift+g mode "$mode_gaps"
mode "$mode_gaps" {
bindsym o mode "$mode_gaps_outer"
bindsym i mode "$mode_gaps_inner"
bindsym Return mode "default"
bindsym Escape mode "default"
}
mode "$mode_gaps_inner" {
bindsym plus gaps inner current plus 5
bindsym minus gaps inner current minus 5
bindsym 0 gaps inner current set 0
bindsym Shift+plus gaps inner all plus 5
bindsym Shift+minus gaps inner all minus 5
bindsym Shift+0 gaps inner all set 0
bindsym Return mode "default"
bindsym Escape mode "default"
}
mode "$mode_gaps_outer" {
bindsym plus gaps outer current plus 5
bindsym minus gaps outer current minus 5
bindsym 0 gaps outer current set 0
bindsym Shift+plus gaps outer all plus 5
bindsym Shift+minus gaps outer all minus 5
bindsym Shift+0 gaps outer all set 0
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Lock screen
bindsym $mod+9 exec --no-startup-id blurlock
# APPLICATION WORKSPACES ----------------------------------------------------
assign [class="Surfshark"] $ws8
# assign [class="zed"] $ws1
# assign [class="gimp"] $ws2
# assign [class="Pale moon"] $ws2
# assign [class="Pcmanfm"] $ws3
# assign [class="Skype"] $ws5
# APPLICATION WINDOW MODES --------------------------------------------------
for_window [title="Picture-in-Picture"] floating disable border pixel 0
for_window [title="alsamixer"] floating enable border pixel 1
for_window [class="calamares"] floating enable border normal
for_window [class="Clipgrab"] floating enable
for_window [title="File Transfer*"] floating enable
for_window [class="fpakman"] floating enable
for_window [class="Galculator"] floating enable border pixel 1
for_window [class="GParted"] floating enable border normal
for_window [title="i3_help"] floating enable sticky enable border normal
for_window [class="Lightdm-settings"] floating enable
for_window [class="Lxappearance"] floating enable sticky enable border normal
for_window [class="Manjaro-hello"] floating enable
for_window [class="Manjaro Settings Manager"] floating enable border normal
for_window [title="MuseScore: Play Panel"] floating enable
for_window [class="Nitrogen"] floating enable sticky enable border normal
for_window [class="Oblogout"] fullscreen enable
for_window [class="octopi"] floating enable
for_window [title="About Pale Moon"] floating enable
for_window [class="Pamac-manager"] floating enable
for_window [class="Pavucontrol"] floating enable
for_window [class="qt5ct"] floating enable sticky enable border normal
for_window [class="Qtconfig-qt4"] floating enable sticky enable border normal
for_window [class="Simple-scan"] floating enable border normal
for_window [class="(?i)System-config-printer.py"] floating enable border normal
for_window [class="Skype"] floating enable border normal
for_window [class="Timeset-gui"] floating enable border normal
for_window [class="(?i)virtualbox"] floating enable border normal
for_window [class="Xfburn"] floating enable
# switch to workspace with urgent window automatically
for_window [urgent=latest] focus
# AESTETICS ----------------------------------------------------------------
# Start i3bar to display a workspace bar (plus the system information i3status if available)
bar {
#status_command i3blocks -c ~/scripts/i3blocks.conf
status_command i3status
position bottom
tray_output primary
bindsym button4 nop
bindsym button5 nop
font xft:URWGothic-Book 11
strip_workspace_numbers yes
colors {
background $color_bg
statusline $color_primary
separator $color_tertiary
focused_workspace $color_primary $color_bg $color_white
active_workspace $color_primary $color_alt_bg $color_white
inactive_workspace $color_gray $color_alt_bg $color_white
binding_mode $color_tertiary $color_bg $color_white
urgent_workspace $color_tertiary $color_alt_bg $color_white
}
}
# hide/unhide i3status bar
bindsym $mod+m bar mode toggle
# Theme colors
# class border backgr. text indic.
client.focused $color_secondary $color_primary $color_text_dark $color_primary
client.focused_inactive $color_primary $color_alt_bg $color_text_light $color_tertiary
client.unfocused $color_gray $color_alt_bg $color_text_light $color_primary
client.urgent $color_tertiary $color_alt_bg $color_white $color_tertiary
client.placeholder $color_bg $color_bg $color_white $color_bg
client.background $color_bg
# Set inner/outer gaps
gaps inner 10
gaps outer 0
smart_gaps on
# Smart borders (draw borders around container only if it is not the only container on this workspace)
# on|no_gaps (on=always activate and no_gaps=only activate if the gap size to the edge of the screen is 0)
smart_borders on

4
i3/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.conf base > config

View File

@@ -1,6 +1,15 @@
set $color_primary #55ffbb
set $color_secondary #62ff57
set $color_tertiary #ff579a
set $color_bg #1b110e
set $color_bg_secondary #000000
set $color_alt_bg #024942
set $color_gray #222222
set $color_text_light #F0F0F0
set $color_text_dark #1b110e
set $color_white #FFFFFF
# This is my personal personal i3 config file! - Adam French
include ~/scripts/i3/colors.conf
# WORKSPACE NAMES -----------------------------------
set $ws1 1:ツ

178
install.sh Executable file
View File

@@ -0,0 +1,178 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPTS_DIR="$HOME/scripts"
CONFIG_DIR="$HOME/.config"
BACKUP_DIR=""
usage() {
echo "Usage: $(basename "$0") [OPTIONS] <target>..."
echo
echo "Targets:"
echo " hyprland Hyprland + waybar + wofi"
echo " sway Sway + waybar + wofi"
echo " i3 i3 + i3blocks + i3status"
echo " cursor Miku cursor theme"
echo " shell Source bashrc/zshrc and add sh/ to PATH"
echo " alacritty Add import to alacritty.toml"
echo " tmux Source tmux.conf"
echo " nvim Neovim (LazyVim) config"
echo " vim Source vimrc"
echo " all Everything (uses hyprland as WM)"
echo
echo "Options:"
echo " -h, --help Show this help"
}
backup() {
local path="$1"
if [ -e "$path" ] || [ -L "$path" ]; then
if [ -z "$BACKUP_DIR" ]; then
BACKUP_DIR="$SCRIPTS_DIR/backups/$(date +%Y%m%d_%H%M%S)"
mkdir -p "$BACKUP_DIR"
echo "Backing up existing configs to $BACKUP_DIR"
fi
local name
name=$(basename "$path")
cp -a "$path" "$BACKUP_DIR/$name"
echo " Backed up $path"
fi
}
link() {
local src="$1" dest="$2"
backup "$dest"
rm -rf "$dest"
ln -sf "$src" "$dest"
echo " Linked $dest -> $src"
}
append_if_missing() {
local file="$1" line="$2"
if [ ! -f "$file" ]; then
echo "$line" >"$file"
echo " Created $file with: $line"
elif ! grep -qF "$line" "$file"; then
echo "" >>"$file"
echo "$line" >>"$file"
echo " Appended to $file: $line"
else
echo " Already in $file: $line"
fi
}
install_hyprland() {
echo "Installing Hyprland configs..."
"$SCRIPTS_DIR/hypr/build.sh"
"$SCRIPTS_DIR/waybar/build.sh"
"$SCRIPTS_DIR/wofi/build.sh"
mkdir -p "$CONFIG_DIR"
link "$SCRIPTS_DIR/hypr" "$CONFIG_DIR/hypr"
link "$SCRIPTS_DIR/waybar" "$CONFIG_DIR/waybar"
link "$SCRIPTS_DIR/wofi" "$CONFIG_DIR/wofi"
}
install_sway() {
echo "Installing Sway configs..."
"$SCRIPTS_DIR/sway/build.sh"
"$SCRIPTS_DIR/waybar/build.sh"
"$SCRIPTS_DIR/wofi/build.sh"
mkdir -p "$CONFIG_DIR"
link "$SCRIPTS_DIR/sway" "$CONFIG_DIR/sway"
link "$SCRIPTS_DIR/waybar" "$CONFIG_DIR/waybar"
link "$SCRIPTS_DIR/wofi" "$CONFIG_DIR/wofi"
}
install_i3() {
echo "Installing i3 configs..."
"$SCRIPTS_DIR/i3/build.sh"
mkdir -p "$CONFIG_DIR"
link "$SCRIPTS_DIR/i3" "$CONFIG_DIR/i3"
link "$SCRIPTS_DIR/i3blocks" "$CONFIG_DIR/i3blocks"
link "$SCRIPTS_DIR/i3status" "$CONFIG_DIR/i3status"
}
install_cursor() {
echo "Installing cursor theme..."
mkdir -p "$HOME/.local/share/icons"
link "$SCRIPTS_DIR/hatsune-miku-windows-linux-cursors/miku-cursor-linux" "$HOME/.local/share/icons/Miku Cursor"
}
install_shell() {
echo "Installing shell configs..."
if [ -f "$HOME/.zshrc" ] || [ "$SHELL" = *zsh* ]; then
append_if_missing "$HOME/.zshrc" "source ~/scripts/zshrc"
append_if_missing "$HOME/.zshrc" 'export PATH="$HOME/scripts/sh:$PATH"'
fi
if [ -f "$HOME/.bashrc" ] || [ "$SHELL" = *bash* ]; then
append_if_missing "$HOME/.bashrc" "source ~/scripts/bashrc"
append_if_missing "$HOME/.bashrc" 'export PATH="$HOME/scripts/sh:$PATH"'
fi
}
install_alacritty() {
echo "Installing Alacritty config..."
local conf="$CONFIG_DIR/alacritty/alacritty.toml"
mkdir -p "$CONFIG_DIR/alacritty"
append_if_missing "$conf" 'import = ["~/scripts/alacritty.toml"]'
}
install_tmux() {
echo "Installing tmux config..."
append_if_missing "$HOME/.tmux.conf" "source ~/scripts/tmux.conf"
}
install_nvim() {
echo "Installing Neovim config..."
mkdir -p "$CONFIG_DIR"
link "$SCRIPTS_DIR/nvim" "$CONFIG_DIR/nvim"
}
install_vim() {
echo "Installing vim config..."
append_if_missing "$HOME/.vimrc" "source ~/scripts/vimrc"
}
if [ $# -eq 0 ]; then
usage
exit 1
fi
targets=()
for arg in "$@"; do
case "$arg" in
-h | --help)
usage
exit 0
;;
all) targets+=(hyprland cursor shell alacritty tmux nvim vim) ;;
*) targets+=("$arg") ;;
esac
done
"$SCRIPTS_DIR/sh/gen-colors"
for target in "${targets[@]}"; do
case "$target" in
hyprland) install_hyprland ;;
sway) install_sway ;;
i3) install_i3 ;;
cursor) install_cursor ;;
shell) install_shell ;;
alacritty) install_alacritty ;;
tmux) install_tmux ;;
nvim) install_nvim ;;
vim) install_vim ;;
*)
echo "Unknown target: $target"
usage
exit 1
;;
esac
done
if [ -n "$BACKUP_DIR" ]; then
echo
echo "Backups saved to: $BACKUP_DIR"
fi
echo "Done!"

9
nvim/.gitignore vendored Normal file
View File

@@ -0,0 +1,9 @@
tt.*
.tests
doc/tags
lazy-lock.json
debug
.repro
foo.*
*.log
data

15
nvim/.neoconf.json Normal file
View File

@@ -0,0 +1,15 @@
{
"neodev": {
"library": {
"enabled": true,
"plugins": true
}
},
"neoconf": {
"plugins": {
"lua_ls": {
"enabled": true
}
}
}
}

201
nvim/LICENSE Normal file
View File

@@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

4
nvim/README.md Normal file
View File

@@ -0,0 +1,4 @@
# 💤 LazyVim
A starter template for [LazyVim](https://github.com/LazyVim/LazyVim).
Refer to the [documentation](https://lazyvim.github.io/installation) to get started.

2
nvim/init.lua Normal file
View File

@@ -0,0 +1,2 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")

25
nvim/lazyvim.json Normal file
View File

@@ -0,0 +1,25 @@
{
"extras": [
"lazyvim.plugins.extras.ai.claudecode",
"lazyvim.plugins.extras.ai.copilot",
"lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.editor.dial",
"lazyvim.plugins.extras.formatting.prettier",
"lazyvim.plugins.extras.lang.docker",
"lazyvim.plugins.extras.lang.git",
"lazyvim.plugins.extras.lang.go",
"lazyvim.plugins.extras.lang.python",
"lazyvim.plugins.extras.lang.sql",
"lazyvim.plugins.extras.lang.tailwind",
"lazyvim.plugins.extras.lang.typescript",
"lazyvim.plugins.extras.lang.vue",
"lazyvim.plugins.extras.ui.edgy",
"lazyvim.plugins.extras.util.dot",
"lazyvim.plugins.extras.util.gitui"
],
"install_version": 8,
"news": {
"NEWS.md": "11866"
},
"version": 8
}

View File

@@ -0,0 +1,8 @@
-- Autocmds are automatically loaded on the VeryLazy event
-- Default autocmds that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/autocmds.lua
--
-- Add any additional autocmds here
-- with `vim.api.nvim_create_autocmd`
--
-- Or remove existing autocmds by their group name (which is prefixed with `lazyvim_` for the defaults)
-- e.g. vim.api.nvim_del_augroup_by_name("lazyvim_wrap_spell")

View File

@@ -0,0 +1,3 @@
-- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here

53
nvim/lua/config/lazy.lua Normal file
View File

@@ -0,0 +1,53 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
{ out, "WarningMsg" },
{ "\nPress any key to exit..." },
}, true, {})
vim.fn.getchar()
os.exit(1)
end
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
-- import/override with your plugins
{ import = "plugins" },
},
defaults = {
-- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup.
-- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default.
lazy = false,
-- It's recommended to leave version=false for now, since a lot the plugin that support versioning,
-- have outdated releases, which may break your Neovim install.
version = false, -- always use the latest git commit
-- version = "*", -- try installing the latest stable version for plugins that support semver
},
install = { colorscheme = { "tokyonight", "habamax" } },
checker = {
enabled = true, -- check for plugin updates periodically
notify = false, -- notify on update
}, -- automatically check for plugin updates
performance = {
rtp = {
-- disable some rtp plugins
disabled_plugins = {
"gzip",
-- "matchit",
-- "matchparen",
-- "netrwPlugin",
"tarPlugin",
"tohtml",
"tutor",
"zipPlugin",
},
},
},
})

View File

@@ -0,0 +1,3 @@
-- Options are automatically loaded before lazy.nvim startup
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
-- Add any additional options here

View File

@@ -0,0 +1,72 @@
return {
{ "ellisonleao/gruvbox.nvim" },
{
"LazyVim/LazyVim",
opts = {
colorscheme = "gruvbox",
},
{
"kawre/leetcode.nvim",
dependencies = {
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
},
opts = {
lang = "rust",
keys = {
toggle = { "q" }, ---@type string|string[]
confirm = { "<CR>" }, ---@type string|string[]
reset_testcases = "r", ---@type string
use_testcase = "U", ---@type string
focus_testcases = "H", ---@type string
focus_result = "L", ---@type string
},
},
},
},
-- {
-- "yetone/avante.nvim",
-- build = vim.fn.has("win32") ~= 0 and "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false"
-- or "make",
-- event = "VeryLazy",
-- opts = {
-- provider = "copilot",
-- selection = {
-- hint_display = "none",
-- },
-- behaviour = {
-- auto_set_keymaps = false,
-- },
-- },
-- cmd = {
-- "AvanteAsk",
-- "AvanteBuild",
-- "AvanteChat",
-- "AvanteClear",
-- "AvanteEdit",
-- "AvanteFocus",
-- "AvanteHistory",
-- "AvanteModels",
-- "AvanteRefresh",
-- "AvanteShowRepoMap",
-- "AvanteStop",
-- "AvanteSwitchProvider",
-- "AvanteToggle",
-- },
-- keys = {
-- { "<leader>aa", "<cmd>AvanteAsk<CR>", desc = "Ask Avante" },
-- { "<leader>ac", "<cmd>AvanteChat<CR>", desc = "Chat with Avante" },
-- { "<leader>ae", "<cmd>AvanteEdit<CR>", desc = "Edit Avante" },
-- { "<leader>af", "<cmd>AvanteFocus<CR>", desc = "Focus Avante" },
-- { "<leader>ah", "<cmd>AvanteHistory<CR>", desc = "Avante History" },
-- { "<leader>am", "<cmd>AvanteModels<CR>", desc = "Select Avante Model" },
-- { "<leader>an", "<cmd>AvanteChatNew<CR>", desc = "New Avante Chat" },
-- { "<leader>ap", "<cmd>AvanteSwitchProvider<CR>", desc = "Switch Avante Provider" },
-- { "<leader>ar", "<cmd>AvanteRefresh<CR>", desc = "Refresh Avante" },
-- { "<leader>as", "<cmd>AvanteStop<CR>", desc = "Stop Avante" },
-- { "<leader>at", "<cmd>AvanteToggle<CR>", desc = "Toggle Avante" },
-- },
-- },
}

3
nvim/stylua.toml Normal file
View File

@@ -0,0 +1,3 @@
indent_type = "Spaces"
indent_width = 2
column_width = 120

331
sway/base Normal file
View File

@@ -0,0 +1,331 @@
output * scale 1.2
# WORKSPACE NAMES -----------------------------------
set $ws1 1:ツ
set $ws2 2:ಠ‿ಠ
set $ws3 3:◕‿◕
set $ws4 4:ʘ‿ʘ
set $ws5 5:˘◡˘
set $ws6 6:◠‿◠
set $ws7 7:ᵔᴥᵔ
set $ws8 8:æ
# DEFAULT STARTUP --------------------------------------
# Keyboard: caps:swapescape via sway input (replaces setxkbmap)
input * {
xkb_options caps:swapescape
xkb_layout gb
}
exec --no-startup-id volctl
exec --no-startup-id fcitx5
exec --no-startup-id /usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
exec --no-startup-id nm-applet --indicator
exec --no-startup-id pamac-tray
# clipit is X11-only; use cliphist + wl-paste instead:
exec wl-paste --watch cliphist store
exec --no-startup-id dunst
# swayidle replaces xautolock
exec swayidle -w timeout 1800 'swaylock -f' before-sleep 'swaylock -f'
exec --no-startup-id waterfox
exec --no-startup-id steam
exec --no-startup-id surfshark
# picom is X11-only; sway has a built-in compositor — no exec needed
# PACTL BINDINGS ---------------------------------------
bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10%
bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10%
bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle
bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle
# BRIGHTNESSCTL BINDINGS ----------------------------------
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set +5%
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 5%-
# DEFAULT WINDOW LAYOUT -------------------------------------
workspace_layout stacking
default_border pixel 1
default_floating_border normal
hide_edge_borders none
# KEYBINDS --------------------------------------------------
set $mod Mod4
# change borders
bindsym $mod+u border none
bindsym $mod+y border pixel 1
bindsym $mod+n border normal
# Use Mouse+$mod to drag floating windows
floating_modifier $mod normal
# start a terminal
bindsym $mod+Return exec kitty
# kill focused window
bindsym $mod+Shift+q kill
# start program launcher
bindsym $mod+d exec --no-startup-id wofi --show drun --style ~/scripts/wofi/wofi_style.css
bindsym $mod+Ctrl+m exec pavucontrol
# Start Applications
bindsym $mod+F2 exec waterfox
bindsym $mod+F3 exec kitty -e ranger
bindsym $mod+Shift+F3 exec pcmanfm
bindsym $mod+F5 exec kitty -e 'mocp'
# picom keybinds removed (not applicable on Wayland)
bindsym $mod+Shift+d --release exec "killall dunst; exec notify-send 'restart dunst'"
# Screenshots: grim + slurp replace i3-scrot / flameshot
bindsym Print exec grim -g "$(slurp)"
bindsym $mod+Print exec grim -g "$(swaymsg -t get_tree | jq -r '.. | select(.focused?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"')"
bindsym $mod+Shift+Print exec grim -g "$(slurp)"
# xkill not available on Wayland; swaymsg kill is the closest equivalent
bindsym $mod+Ctrl+x exec swaymsg kill
focus_follows_mouse yes
# change focus
bindsym $mod+h focus left
bindsym $mod+j focus down
bindsym $mod+k focus up
bindsym $mod+l focus right
# alternatively, you can use the cursor keys:
bindsym $mod+Left focus left
bindsym $mod+Down focus down
bindsym $mod+Up focus up
bindsym $mod+Right focus right
# move focused window
bindsym $mod+Shift+h move left
bindsym $mod+Shift+j move down
bindsym $mod+Shift+k move up
bindsym $mod+Shift+l move right
# alternatively, you can use the cursor keys:
bindsym $mod+Shift+Left move left
bindsym $mod+Shift+Down move down
bindsym $mod+Shift+Up move up
bindsym $mod+Shift+Right move right
# workspace back and forth (with/without active container)
workspace_auto_back_and_forth yes
bindsym $mod+b workspace back_and_forth
bindsym $mod+Shift+b move container to workspace back_and_forth; workspace back_and_forth
# split orientation
bindsym $mod+g split h;exec notify-send 'tile horizontally'
bindsym $mod+v split v;exec notify-send 'tile vertically'
bindsym $mod+q split toggle
# toggle fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle
# change container layout (stacked, tabbed, toggle split)
bindsym $mod+s layout stacking;exec notify-send 'layout stacking'
bindsym $mod+w layout tabbed; exec notify-send 'layout tabbed'
bindsym $mod+e layout toggle split; exec notify-send 'layout split'
# toggle tiling / floating
bindsym $mod+Shift+space floating toggle
# change focus between tiling / floating windows
bindsym $mod+space focus mode_toggle
# toggle sticky
bindsym $mod+Shift+s sticky toggle
# focus the parent container
bindsym $mod+a focus parent
# move the currently focused window to the scratchpad
bindsym $mod+Shift+minus move scratchpad
# Show the next scratchpad window or hide the focused scratchpad window.
bindsym $mod+minus scratchpad show
#navigate workspaces next / previous
bindsym $mod+Ctrl+Right workspace next
bindsym $mod+Ctrl+Left workspace prev
# switch to workspace
bindsym $mod+1 workspace $ws1
bindsym $mod+2 workspace $ws2
bindsym $mod+3 workspace $ws3
bindsym $mod+4 workspace $ws4
bindsym $mod+5 workspace $ws5
bindsym $mod+6 workspace $ws6
bindsym $mod+7 workspace $ws7
bindsym $mod+8 workspace $ws8
# Move focused container to workspace
bindsym $mod+Ctrl+1 move container to workspace $ws1
bindsym $mod+Ctrl+2 move container to workspace $ws2
bindsym $mod+Ctrl+3 move container to workspace $ws3
bindsym $mod+Ctrl+4 move container to workspace $ws4
bindsym $mod+Ctrl+5 move container to workspace $ws5
bindsym $mod+Ctrl+6 move container to workspace $ws6
bindsym $mod+Ctrl+7 move container to workspace $ws7
bindsym $mod+Ctrl+8 move container to workspace $ws8
# Move to workspace with focused container
bindsym $mod+Shift+1 move container to workspace $ws1; workspace $ws1
bindsym $mod+Shift+2 move container to workspace $ws2; workspace $ws2
bindsym $mod+Shift+3 move container to workspace $ws3; workspace $ws3
bindsym $mod+Shift+4 move container to workspace $ws4; workspace $ws4
bindsym $mod+Shift+5 move container to workspace $ws5; workspace $ws5
bindsym $mod+Shift+6 move container to workspace $ws6; workspace $ws6
bindsym $mod+Shift+7 move container to workspace $ws7; workspace $ws7
bindsym $mod+Shift+8 move container to workspace $ws8; workspace $ws8
# reload the configuration file
bindsym $mod+Shift+c reload
# restart sway inplace
bindsym $mod+Shift+r reload
# exit sway (logs you out of your Wayland session)
bindsym $mod+Shift+e exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'
# Set shut down, restart and locking features
bindsym $mod+0 mode "$mode_system"
set $mode_system (l)ock, (e)xit, switch_(u)ser, (s)uspend, (h)ibernate, (r)eboot, (Shift+s)hutdown
mode "$mode_system" {
bindsym l exec swaylock -f, mode "default"
bindsym s exec systemctl suspend, mode "default"
bindsym u exec swaymsg exit, mode "default"
bindsym e exit
bindsym h exec systemctl hibernate, mode "default"
bindsym r exec systemctl reboot
bindsym Shift+s exec systemctl poweroff
# exit system mode: "Enter" or "Escape"
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Resize window (you can also use the mouse for that)
bindsym $mod+r mode "resize"
mode "resize" {
bindsym h resize shrink width 5 px or 5 ppt
bindsym j resize grow height 5 px or 5 ppt
bindsym k resize shrink height 5 px or 5 ppt
bindsym l resize grow width 5 px or 5 ppt
bindsym Left resize shrink width 10 px or 10 ppt
bindsym Down resize grow height 10 px or 10 ppt
bindsym Up resize shrink height 10 px or 10 ppt
bindsym Right resize grow width 10 px or 10 ppt
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Gaps mode
set $mode_gaps Gaps: (o) outer, (i) inner
set $mode_gaps_outer Outer Gaps: +|-|0 (local), Shift + +|-|0 (global)
set $mode_gaps_inner Inner Gaps: +|-|0 (local), Shift + +|-|0 (global)
bindsym $mod+Shift+g mode "$mode_gaps"
mode "$mode_gaps" {
bindsym o mode "$mode_gaps_outer"
bindsym i mode "$mode_gaps_inner"
bindsym Return mode "default"
bindsym Escape mode "default"
}
mode "$mode_gaps_inner" {
bindsym plus gaps inner current plus 5
bindsym minus gaps inner current minus 5
bindsym 0 gaps inner current set 0
bindsym Shift+plus gaps inner all plus 5
bindsym Shift+minus gaps inner all minus 5
bindsym Shift+0 gaps inner all set 0
bindsym Return mode "default"
bindsym Escape mode "default"
}
mode "$mode_gaps_outer" {
bindsym plus gaps outer current plus 5
bindsym minus gaps outer current minus 5
bindsym 0 gaps outer current set 0
bindsym Shift+plus gaps outer all plus 5
bindsym Shift+minus gaps outer all minus 5
bindsym Shift+0 gaps outer all set 0
bindsym Return mode "default"
bindsym Escape mode "default"
}
# Lock screen
bindsym $mod+9 exec --no-startup-id swaylock -f
# APPLICATION WORKSPACES ----------------------------------------------------
assign [app_id="Surfshark"] $ws8
# APPLICATION WINDOW MODES --------------------------------------------------
# Note: use app_id for native Wayland apps, class for XWayland apps
for_window [title="Picture-in-Picture"] floating disable border pixel 0
for_window [title="alsamixer"] floating enable border pixel 1
for_window [class="calamares"] floating enable border normal
for_window [class="Clipgrab"] floating enable
for_window [title="File Transfer*"] floating enable
for_window [class="fpakman"] floating enable
for_window [class="Galculator"] floating enable border pixel 1
for_window [class="GParted"] floating enable border normal
for_window [title="i3_help"] floating enable sticky enable border normal
for_window [class="Lightdm-settings"] floating enable
for_window [class="Lxappearance"] floating enable sticky enable border normal
for_window [class="Manjaro-hello"] floating enable
for_window [class="Manjaro Settings Manager"] floating enable border normal
for_window [title="MuseScore: Play Panel"] floating enable
for_window [class="Nitrogen"] floating enable sticky enable border normal
for_window [class="Oblogout"] fullscreen enable
for_window [class="octopi"] floating enable
for_window [title="About Pale Moon"] floating enable
for_window [class="Pamac-manager"] floating enable
for_window [app_id="pavucontrol"] floating enable
for_window [class="qt5ct"] floating enable sticky enable border normal
for_window [class="Qtconfig-qt4"] floating enable sticky enable border normal
for_window [class="Simple-scan"] floating enable border normal
for_window [class="(?i)System-config-printer.py"] floating enable border normal
for_window [class="Skype"] floating enable border normal
for_window [class="Timeset-gui"] floating enable border normal
for_window [class="(?i)virtualbox"] floating enable border normal
for_window [class="Xfburn"] floating enable
# switch to workspace with urgent window automatically
for_window [urgent=latest] focus
# AESTETICS ----------------------------------------------------------------
exec_always waybar -c ~/scripts/waybar/waybar_sway_config.json -s ~/scripts/waybar/waybar_style.css
# Theme colors
# class border backgr. text indic.
client.focused $color_secondary $color_primary $color_text_dark $color_primary
client.focused_inactive $color_primary $color_alt_bg $color_text_light $color_tertiary
client.unfocused $color_gray $color_alt_bg $color_text_light $color_primary
client.urgent $color_tertiary $color_alt_bg $color_white $color_tertiary
client.placeholder $color_bg $color_bg $color_white $color_bg
client.background $color_bg
# Set inner/outer gaps
gaps inner 10
gaps outer 0
smart_gaps on
smart_borders on

4
sway/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.conf base > config

View File

@@ -1,4 +1,13 @@
include ~/scripts/sway/colors.conf
set $color_primary #55ffbb
set $color_secondary #62ff57
set $color_tertiary #ff579a
set $color_bg #1b110e
set $color_bg_secondary #000000
set $color_alt_bg #024942
set $color_gray #222222
set $color_text_light #F0F0F0
set $color_text_dark #1b110e
set $color_white #FFFFFF
output * scale 1.2

123
waybar/base.css Normal file
View File

@@ -0,0 +1,123 @@
* {
font-family: "URWGothic-Book", monospace;
font-size: 16px;
min-height: 0;
border: none;
border-radius: 0;
padding: 0;
margin: 0;
}
window#waybar {
background-color: @color_bg;
color: @color_primary;
}
/* Workspaces */
#workspaces button {
padding: 0 8px;
background-color: @color_alt_bg;
color: @color_white;
border-bottom: 2px solid transparent;
}
#workspaces button:hover {
background-color: @color_alt_bg;
border-bottom: 2px solid @color_primary;
box-shadow: none;
}
#workspaces button.focused,
#workspaces button.active {
background-color: @color_bg;
color: @color_white;
border-bottom: 2px solid @color_primary;
}
#workspaces button.urgent {
background-color: @color_tertiary;
color: @color_white;
}
#mode {
background-color: @color_tertiary;
color: @color_text_dark;
padding: 0 8px;
font-style: italic;
}
/* Right-side modules */
#custom-greetings,
#custom-history,
#custom-claudebar,
#pulseaudio,
#cpu,
#memory,
#disk,
#network,
#battery,
#clock {
padding: 0 10px;
color: @color_primary;
}
/* Pink separators between modules (matching i3bar separator color) */
#custom-history,
#custom-claudebar,
#pulseaudio,
#cpu,
#memory,
#disk,
#network,
#battery,
#clock {
border-left: 1px solid @color_tertiary;
}
#battery.warning {
color: @color_secondary;
}
#battery.critical {
color: @color_tertiary;
}
#custom-greetings {
color: @color_secondary;
}
#clock {
color: @color_tertiary;
}
/* claudebar severity classes */
#custom-claudebar.low {
color: @color_primary;
}
#custom-claudebar.mid {
color: @color_secondary;
}
#custom-claudebar.high {
color: @color_tertiary;
}
#custom-claudebar.critical {
color: @color_tertiary;
}
#tray {
padding: 0 8px;
border-left: 1px solid @color_tertiary;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: @color_tertiary;
}

4
waybar/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.css base.css > style.css

View File

@@ -1,4 +1,13 @@
@import "colors.css";
@define-color color_primary #55ffbb;
@define-color color_secondary #62ff57;
@define-color color_tertiary #ff579a;
@define-color color_bg #1b110e;
@define-color color_bg_secondary #000000;
@define-color color_alt_bg #024942;
@define-color color_gray #222222;
@define-color color_text_light #F0F0F0;
@define-color color_text_dark #1b110e;
@define-color color_white #FFFFFF;
* {
font-family: "URWGothic-Book", monospace;

49
wofi/base.css Normal file
View File

@@ -0,0 +1,49 @@
window {
margin: 0px;
border: 1px solid @color_primary;
background-color: @color_bg;
border-radius: 8px;
}
#input {
padding: 4px 8px;
margin: 6px;
color: @color_text_light;
background-color: @color_alt_bg;
border: 1px solid @color_primary;
border-radius: 4px;
}
#inner-box {
background-color: @color_bg;
}
#outer-box {
margin: 4px;
padding: 4px;
background-color: @color_bg;
}
#scroll {
margin: 0px;
padding: 4px;
}
#text {
margin: 2px 8px;
color: @color_primary;
}
#entry {
border-radius: 4px;
}
#entry:selected {
background-color: @color_alt_bg;
border: 1px solid @color_primary;
}
#text:selected {
color: @color_tertiary;
}

4
wofi/build.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
cat colors.css base.css > style.css

View File

@@ -1,4 +1,13 @@
@import "/home/adamf/scripts/wofi/colors.css";
@define-color color_primary #55ffbb;
@define-color color_secondary #62ff57;
@define-color color_tertiary #ff579a;
@define-color color_bg #1b110e;
@define-color color_bg_secondary #000000;
@define-color color_alt_bg #024942;
@define-color color_gray #222222;
@define-color color_text_light #F0F0F0;
@define-color color_text_dark #1b110e;
@define-color color_white #FFFFFF;
window {
margin: 0px;