Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LAST7 committed Jun 12, 2023
0 parents commit c86eb21
Show file tree
Hide file tree
Showing 39 changed files with 5,282 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.bak
68 changes: 68 additions & 0 deletions alacritty/alacritty.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
live_config_reload: true
tabspaces: 4

# import the theme
import:
- ~/.config/alacritty/nord.yaml

env:
TERM: xterm-256color

selection:
semantic_escape_chars: ",│`|:\"' ()[]{}<>\t"
save_to_clipboard: true

window:
opacity: 0.8
dimensions:
columns: 120
lines: 30
dynamic_padding: false
decorations: Full

font:
size: 11.0
normal:
family: "FiraCode Nerd Font"
style: Regular

mouse:
hide_when_typing: true
# key_bindings:
# # Rename the current tmux window
# - { key: Comma, mods: Command, chars: "\x02\x2c" }
# # Select a new tmux session for the attached client interactively
# - { key: K, mods: Command, chars: "\x02\x73" }
# # Select window 1-9
# - { key: Key1, mods: Command, chars: "\x02\x31" }
# - { key: Key2, mods: Command, chars: "\x02\x32" }
# - { key: Key3, mods: Command, chars: "\x02\x33" }
# - { key: Key4, mods: Command, chars: "\x02\x34" }
# - { key: Key5, mods: Command, chars: "\x02\x35" }
# - { key: Key6, mods: Command, chars: "\x02\x36" }
# - { key: Key7, mods: Command, chars: "\x02\x37" }
# - { key: Key8, mods: Command, chars: "\x02\x38" }
# - { key: Key9, mods: Command, chars: "\x02\x39" }
# # Switch to last tmux session
# - { key: L, mods: Command, chars: "\x02\x4c" }
# - { key: LBracket, mods: Command, chars: "\x02\x5b" }
# # Change to the previous tmux window
# - { key: LBracket, mods: Command|Shift, chars: "\x02\x70" }
# # Split the current pane into two, left and right
# - { key: D, mods: Command, chars: "\x02\x25" }
# # Split the current pane into two, top and bottom.
# - { key: D, mods: Command|Shift, chars: "\x02\x22" }
# # Detach the current tmux client
# - { key: W, mods: Command|Shift, chars: "\x02\x64" }
# # Change to the next tmux window
# - { key: RBracket, mods: Command|Shift, chars: "\x02\x6e" }
# # Type <escape>:w<enter> to save neovim
# - { key: S, mods: Command, chars: "\x1b\x3a\x77\x0a" }
# # Create a new tmux window
# - { key: T, mods: Command, chars: "\x02\x63" }
# # Break the current tmux pane out of the tmux window
# - { key: T, mods: Command|Shift, chars: "\x02\x21" }
# # Kill the current tmux pane (and window if last pane)
# - { key: X, mods: Command, chars: "\x02\x78" }
# # Toggle the zoom state of the current tmux pane
# - { key: Z, mods: Command, chars: "\x02\x7a" }
28 changes: 28 additions & 0 deletions alacritty/nord.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Colors (Nord)
colors:
# Default colors
primary:
background: '0x2E3440'
foreground: '0xD8DEE9'

# Normal colors
normal:
black: '0x3B4252'
red: '0xBF616A'
green: '0xA3BE8C'
yellow: '0xEBCB8B'
blue: '0x81A1C1'
magenta: '0xB48EAD'
cyan: '0x88C0D0'
white: '0xE5E9F0'

# Bright colors
bright:
black: '0x4C566A'
red: '0xBF616A'
green: '0xA3BE8C'
yellow: '0xEBCB8B'
blue: '0x81A1C1'
magenta: '0xB48EAD'
cyan: '0x8FBCBB'
white: '0xECEFF4'
53 changes: 53 additions & 0 deletions bspwm/bspwmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#! /bin/sh

pgrep -x sxhkd > /dev/null || sxhkd &

bspc monitor -d I II III IV V VI VII VIII IX X

bspc config border_width 4
bspc config window_gap 10
bspc config focused_border_color "#9ccfd8"
bspc config normal_border_color "#908caa"

bspc config split_ratio 0.5
bspc config borderless_monocle true
bspc config gapless_monocle true

# bspc rule -a Gimp desktop='^8' state=floating follow=on
# bspc rule -a Chromium desktop='^2'
# bspc rule -a mplayer2 state=floating
# bspc rule -a Kupfer.py focus=on
# bspc rule -a Screenkey manage=off
bspc rule -a vlc state=floating center=true
bspc rule -a feh state=floating center=true
bspc rule -a gwenview state=floating center=true
bspc rule -a alacritty state=floating center=true
bspc rule -a neovide state=floating center=true
bspc rule -a obs state=floating



# feh wallpaper
# feh --bg-scale ~/Pictures/wallpaper/Desktop.JPG
feh --bg-scale --randomize ~/Pictures/wallpaper/*

# picom
picom -b --experimental-backends &

# dunst
dunst &

# fcitx5
fcitx5 &

# udiskie
udiskie &

# flameshot
flameshot &

# utools
utools &

# polybar
/home/last/.config/polybar/launch.sh
Loading

0 comments on commit c86eb21

Please sign in to comment.