Compare commits
No commits in common. "c2f89d171db9623aa0a1e6818d3903993d362f3c" and "2a65aab5158d0a688ccb201993fe9958ff8c610b" have entirely different histories.
c2f89d171d
...
2a65aab515
|
@ -7,9 +7,7 @@ function files
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
files $dfp/common/envs | \
|
files $dfp/common/envs | \
|
||||||
fzf --multi --prompt "Select applicable environments (multi-select w/ TAB): " \
|
fzf -m --prompt "Select applicable environments (multi-select w/ TAB): " | \
|
||||||
--preview-window="up:50%:noborder" \
|
|
||||||
--preview="ls -la --color=always {}" | \
|
|
||||||
string trim | \
|
string trim | \
|
||||||
read -a -d \n -z lines
|
read -a -d \n -z lines
|
||||||
for l in $lines
|
for l in $lines
|
||||||
|
|
|
@ -1,9 +1,4 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
has_command kubectl || {
|
|
||||||
echo "kubectl command not found"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
|
||||||
kubectl get namespaces --show-labels | \
|
kubectl get namespaces --show-labels | \
|
||||||
uniq | \
|
uniq | \
|
||||||
sort | \
|
sort | \
|
||||||
|
|
|
@ -98,7 +98,7 @@ alias sctl "sudo systemctl"
|
||||||
alias sctlu "systemctl --user"
|
alias sctlu "systemctl --user"
|
||||||
alias bt "sctl start bluetooth && sudo bluetoothctl"
|
alias bt "sctl start bluetooth && sudo bluetoothctl"
|
||||||
alias btctl "bt"
|
alias btctl "bt"
|
||||||
alias resrc "source $XDG_CONFIG_HOME/fish/config.fish; fish_user_key_bindings"
|
alias resrc "source $XDG_CONFIG_HOME/fish/config.fish"
|
||||||
alias sc "sc-im"
|
alias sc "sc-im"
|
||||||
alias scs "sc-im $NOTES_PATH/_scratch.sc"
|
alias scs "sc-im $NOTES_PATH/_scratch.sc"
|
||||||
alias disks "lsblk && df -h"
|
alias disks "lsblk && df -h"
|
||||||
|
|
|
@ -32,6 +32,10 @@ set -Ux VISUAL nvim
|
||||||
set -Ux PAGER less
|
set -Ux PAGER less
|
||||||
set -Ux MANPAGER 'env MANWIDTH="" nvim --cmd "let g:prosession_on_startup=0" +Man!'
|
set -Ux MANPAGER 'env MANWIDTH="" nvim --cmd "let g:prosession_on_startup=0" +Man!'
|
||||||
|
|
||||||
|
# has_command fd && set -Ux FZF_DEFAULT_COMMAND 'fd --type f --hidden --follow --exclude .git'
|
||||||
|
|
||||||
|
test -f ~/.fzf/shell/key-bindings.fish && source ~/.fzf/shell/key-bindings.fish
|
||||||
|
|
||||||
function fish_greeting;
|
function fish_greeting;
|
||||||
set_color -b black brblack
|
set_color -b black brblack
|
||||||
printf "%s@%s %s\n" $USER (hostname) (date)
|
printf "%s@%s %s\n" $USER (hostname) (date)
|
||||||
|
|
|
@ -1,26 +1,22 @@
|
||||||
#!/usr/bin/env fish
|
#!/usr/bin/env fish
|
||||||
|
|
||||||
function fish_user_key_bindings
|
function fish_user_key_bindings
|
||||||
# has_command fd && set -Ux FZF_DEFAULT_COMMAND 'fd --type f --hidden --follow --exclude .git'
|
|
||||||
|
|
||||||
test -f $HOME/.fzf/shell/key-bindings.fish && source $HOME/.fzf/shell/key-bindings.fish
|
|
||||||
|
|
||||||
fzf_key_bindings
|
fzf_key_bindings
|
||||||
fish_vi_key_bindings insert --no-erase
|
fish_vi_key_bindings insert --no-erase
|
||||||
|
|
||||||
set vi_esc "if commandline -P; commandline -f cancel; else; set fish_bind_mode default; commandline -f backward-char force-repaint; end"
|
set vi_esc "if commandline -P; commandline -f cancel; else; set fish_bind_mode default; commandline -f backward-char force-repaint; end"
|
||||||
|
|
||||||
bind -M insert jk $vi_esc
|
bind -M insert jk $vi_esc
|
||||||
bind -M insert jK $vi_esc
|
|
||||||
bind -M insert Jk $vi_esc
|
bind -M insert Jk $vi_esc
|
||||||
bind -M insert JK $vi_esc
|
bind -M insert JK $vi_esc
|
||||||
bind -M insert jj $vi_esc
|
bind -M insert jj $vi_esc
|
||||||
bind -M insert jJ $vi_esc
|
|
||||||
bind -M insert Jj $vi_esc
|
bind -M insert Jj $vi_esc
|
||||||
bind -M insert JJ $vi_esc
|
bind -M insert JJ $vi_esc
|
||||||
|
bind -M insert JJ $vi_esc
|
||||||
|
|
||||||
bind -M insert \cp up-or-search
|
bind -M insert \cp up-or-search
|
||||||
bind -M insert \cn down-or-search
|
bind -M insert \cn down-or-search
|
||||||
|
bind -M insert \cs fzf-cd-widget
|
||||||
bind -M insert \ce end-of-line
|
bind -M insert \ce end-of-line
|
||||||
bind -M insert \ca beginning-of-line
|
bind -M insert \ca beginning-of-line
|
||||||
bind -M insert \cw forward-word
|
bind -M insert \cw forward-word
|
||||||
|
@ -33,26 +29,9 @@ function fish_user_key_bindings
|
||||||
bind -M default \ee false
|
bind -M default \ee false
|
||||||
bind -M default \ev false
|
bind -M default \ev false
|
||||||
|
|
||||||
bind -M insert --erase \ct
|
bind --erase \ct
|
||||||
bind -M default --erase \ct
|
|
||||||
bind --erase \c\t
|
bind --erase \c\t
|
||||||
bind --erase \cs
|
|
||||||
bind --erase btab
|
bind --erase btab
|
||||||
bind --erase --preset -M visual -k btab
|
|
||||||
bind --erase --preset -M insert -k btab
|
|
||||||
bind --erase --preset -M default -k btab
|
|
||||||
bind --erase --preset -k btab
|
|
||||||
bind --erase -M visual -k btab
|
|
||||||
bind --erase -M insert -k btab
|
|
||||||
bind --erase -M default -k btab
|
|
||||||
bind --erase -k btab
|
|
||||||
|
|
||||||
bind --erase \cs
|
bind \ct 'tmux new-session'
|
||||||
bind --erase -M insert \cs
|
|
||||||
bind --erase -M default \cs
|
|
||||||
|
|
||||||
bind -M insert \cs 'tmux info && tmux attach -t default || tmux new-session -s default'
|
|
||||||
bind -M default \cs 'tmux info && tmux attach -t default || tmux new-session -s default'
|
|
||||||
bind -M insert \ct 'tmux info && tmux new-window -t default || tmux new-session -s default'
|
|
||||||
bind -M default \ct 'tmux info && tmux new-window -t default || tmux new-session -s default'
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -36,9 +36,7 @@
|
||||||
d = diff
|
d = diff
|
||||||
ds = diff --staged
|
ds = diff --staged
|
||||||
dt = difftool
|
dt = difftool
|
||||||
f = fetch
|
l = log --pretty=format:'%h %ad%x09%an%x09%s' --date=short
|
||||||
l = log --pretty=format:'%h %ad%x09%an%x09%s' --date=short --decorate
|
|
||||||
graph = log --graph --abbrev-commit --decorate --oneline --all
|
|
||||||
ls = ls-files
|
ls = ls-files
|
||||||
mm = merge master
|
mm = merge master
|
||||||
p = push
|
p = push
|
||||||
|
@ -86,5 +84,3 @@
|
||||||
path = /home/daniel/.home/.netlify/helper/git-config
|
path = /home/daniel/.home/.netlify/helper/git-config
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = master
|
defaultBranch = master
|
||||||
[branch]
|
|
||||||
autoSetupMerge = always
|
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
||||||
# The parser is also very primitive, and not human-friendly.
|
# The parser is also very primitive, and not human-friendly.
|
||||||
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||||
sort_key=47
|
sort_key=46
|
||||||
sort_direction=1
|
sort_direction=1
|
||||||
tree_sort_key=0
|
hide_threads=0
|
||||||
tree_sort_direction=1
|
|
||||||
hide_kernel_threads=1
|
hide_kernel_threads=1
|
||||||
hide_userland_threads=1
|
hide_userland_threads=1
|
||||||
shadow_other_users=0
|
shadow_other_users=0
|
||||||
|
@ -13,27 +12,15 @@ show_program_path=0
|
||||||
highlight_base_name=1
|
highlight_base_name=1
|
||||||
highlight_megabytes=1
|
highlight_megabytes=1
|
||||||
highlight_threads=1
|
highlight_threads=1
|
||||||
highlight_changes=0
|
|
||||||
highlight_changes_delay_secs=5
|
|
||||||
find_comm_in_cmdline=1
|
|
||||||
strip_exe_from_cmdline=1
|
|
||||||
show_merged_command=0
|
|
||||||
tree_view=0
|
tree_view=0
|
||||||
tree_view_always_by_pid=0
|
|
||||||
header_margin=1
|
header_margin=1
|
||||||
detailed_cpu_time=0
|
detailed_cpu_time=0
|
||||||
cpu_count_from_one=1
|
cpu_count_from_zero=0
|
||||||
show_cpu_usage=1
|
|
||||||
show_cpu_frequency=0
|
|
||||||
show_cpu_temperature=0
|
|
||||||
degree_fahrenheit=0
|
|
||||||
update_process_names=0
|
update_process_names=0
|
||||||
account_guest_in_cpu_meter=0
|
account_guest_in_cpu_meter=0
|
||||||
color_scheme=0
|
color_scheme=0
|
||||||
enable_mouse=1
|
|
||||||
delay=15
|
delay=15
|
||||||
left_meters=LeftCPUs2 Memory Swap
|
left_meters=LeftCPUs2 Memory Swap
|
||||||
left_meter_modes=1 1 1
|
left_meter_modes=1 1 1
|
||||||
right_meters=RightCPUs2 Tasks LoadAverage Uptime
|
right_meters=RightCPUs2 Tasks LoadAverage Uptime
|
||||||
right_meter_modes=1 2 2 2
|
right_meter_modes=1 2 2 2
|
||||||
hide_function_bar=0
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ url_style single
|
||||||
|
|
||||||
strip_trailing_spaces smart
|
strip_trailing_spaces smart
|
||||||
|
|
||||||
|
kitty_mod ctrl+shift+alt
|
||||||
open_url_modifiers ctrl
|
open_url_modifiers ctrl
|
||||||
|
|
||||||
background #111111
|
background #111111
|
||||||
|
@ -75,5 +76,7 @@ color18 #333333
|
||||||
#
|
#
|
||||||
# color18 #cccccc
|
# color18 #cccccc
|
||||||
|
|
||||||
|
kitty_mod ctrl+shift+alt
|
||||||
|
open_url_modifiers ctrl
|
||||||
wheel_scroll_multiplier 5.0
|
wheel_scroll_multiplier 5.0
|
||||||
touch_scroll_multiplier 5.0
|
touch_scroll_multiplier 5.0
|
||||||
|
|
|
@ -94,13 +94,7 @@ call matchadd('TooLongColorColumn', '\%121v', 200)
|
||||||
command! W write
|
command! W write
|
||||||
|
|
||||||
inoremap jj <Esc>
|
inoremap jj <Esc>
|
||||||
inoremap jJ <Esc>
|
|
||||||
inoremap Jj <Esc>
|
|
||||||
inoremap JJ <Esc>
|
|
||||||
inoremap jk <Esc>
|
inoremap jk <Esc>
|
||||||
inoremap jK <Esc>
|
|
||||||
inoremap Jk <Esc>
|
|
||||||
inoremap JK <Esc>
|
|
||||||
|
|
||||||
nnoremap <C-q> :qa<CR>
|
nnoremap <C-q> :qa<CR>
|
||||||
inoremap <C-q> <Esc><C-q>
|
inoremap <C-q> <Esc><C-q>
|
||||||
|
|
|
@ -5,17 +5,13 @@ bind-key s send-prefix
|
||||||
bind-key v split-window -h
|
bind-key v split-window -h
|
||||||
bind-key b split-window
|
bind-key b split-window
|
||||||
bind-key T source-file "$HOME/.tmux.conf" \; display-message "Reloaded $HOME/.tmux.conf"
|
bind-key T source-file "$HOME/.tmux.conf" \; display-message "Reloaded $HOME/.tmux.conf"
|
||||||
bind-key O display-message "#(tmux-save-buffer '#S')"
|
bind-key O display-message "#(~/.config/lytedev-dotfiles/bin/tmux-save-buffer #S)"
|
||||||
bind-key H set -s status
|
bind-key H set -s status
|
||||||
bind-key -n C-l select-pane -R
|
bind-key -n C-l select-pane -R
|
||||||
bind-key -n C-k select-pane -U
|
bind-key -n C-k select-pane -U
|
||||||
bind-key -n C-j select-pane -D
|
bind-key -n C-j select-pane -D
|
||||||
bind-key -n C-h select-pane -L
|
bind-key -n C-h select-pane -L
|
||||||
bind-key -n C-t new-window
|
bind s run "tmux split-window -l 12 'sh -c ~/.config/lytedev-dotfiles/bin/tmuxswitcher'"
|
||||||
bind-key Tab next-window
|
|
||||||
bind-key -n C-Tab next-window
|
|
||||||
bind-key -n C-S-Tab previous-window
|
|
||||||
bind s run "tmux split-window -l 12 'tmuxswitcher'"
|
|
||||||
|
|
||||||
bind M-l source-file "$XDG_CONFIG_HOME/tmux/layouts/dev.tmux"
|
bind M-l source-file "$XDG_CONFIG_HOME/tmux/layouts/dev.tmux"
|
||||||
|
|
||||||
|
|
32
os/linux/arch/provision.d/00-add-user.bash
Executable file
32
os/linux/arch/provision.d/00-add-user.bash
Executable file
|
@ -0,0 +1,32 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
u=daniel
|
||||||
|
ud="/home/$u"
|
||||||
|
|
||||||
|
# user exists - we will assume setup has already run
|
||||||
|
if getent passwd "$u"; then exit 0; fi
|
||||||
|
|
||||||
|
pacman -S --needed --noconfirm sudo fish git
|
||||||
|
groupadd admin 2>/dev/null
|
||||||
|
echo '%admin ALL=(ALL) ALL' >> /etc/sudoers.d/admin-group-sudoers
|
||||||
|
mkdir --parents "$ud/.home" "$ud/dl"
|
||||||
|
useradd --home-dir "$ud/.home" \
|
||||||
|
--groups "admin,users,uucp,lock" \
|
||||||
|
--shell "/bin/bash" \
|
||||||
|
"$u"
|
||||||
|
chown --recursive "$u:$u" "$ud"
|
||||||
|
chsh --shell /bin/fish
|
||||||
|
echo "Setting password for user '$u'"
|
||||||
|
|
||||||
|
# enforce that a password is set
|
||||||
|
# we need one for sudo commands in later scripts
|
||||||
|
while true; do
|
||||||
|
passwd "$u"
|
||||||
|
ee=$!
|
||||||
|
echo $ee
|
||||||
|
if [ "$ee" -eq 0 ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
echo $!
|
|
@ -26,7 +26,6 @@ yay -Sy --needed --noconfirm \
|
||||||
openssl `# Crypto` \
|
openssl `# Crypto` \
|
||||||
asdf-vm `# Runtime Version Manager` \
|
asdf-vm `# Runtime Version Manager` \
|
||||||
pass passff-host `# Password Management` \
|
pass passff-host `# Password Management` \
|
||||||
hexyl `# CLI Hex Viewer` \
|
|
||||||
rsync `# File Transfer` \
|
rsync `# File Transfer` \
|
||||||
neovim-nightly-bin `# Text Editors` \
|
neovim-nightly-bin `# Text Editors` \
|
||||||
sc-im `# Spreadsheets` \
|
sc-im `# Spreadsheets` \
|
||||||
|
@ -44,8 +43,4 @@ yay -Sy --needed --noconfirm \
|
||||||
fortune-mod fortune-mod-archlinux `# Fortune` \
|
fortune-mod fortune-mod-archlinux `# Fortune` \
|
||||||
oath-toolkit `# One-Time Passwords` \
|
oath-toolkit `# One-Time Passwords` \
|
||||||
sysstat `# System Statistics` \
|
sysstat `# System Statistics` \
|
||||||
reflector-simple `# Simplify Mirror Management` \
|
|
||||||
inetutils `# netutils` \
|
|
||||||
nnn `# CLI File Manager` \
|
|
||||||
ntfs-3g `# Windows filesystem stuff` \
|
|
||||||
man-db man-pages `# Come On, Man!`
|
man-db man-pages `# Come On, Man!`
|
||||||
|
|
0
os/linux/arch/provision.d/optional/amd-cpu.bash
Executable file → Normal file
0
os/linux/arch/provision.d/optional/amd-cpu.bash
Executable file → Normal file
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# TODO: vulkan?
|
||||||
yay -S \
|
yay -S \
|
||||||
xf86-video-amdgpu mesa lib32-mesa \
|
xf86-video-amdgpu mesa \
|
||||||
amdvlk lib32-amdvlk \
|
|
||||||
libva-mesa-driver mesa-vdpau libva-vdpau-driver libvdpau-va-gl `# Hardware Accelerated Video`
|
libva-mesa-driver mesa-vdpau libva-vdpau-driver libvdpau-va-gl `# Hardware Accelerated Video`
|
||||||
|
|
25
os/linux/arch/provision.d/optional/ui-packages.bash
Executable file → Normal file
25
os/linux/arch/provision.d/optional/ui-packages.bash
Executable file → Normal file
|
@ -7,42 +7,42 @@ else
|
||||||
sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
|
sudo sh -c 'echo -e "\n\n[multilib]\nInclude = /etc/pacman.d/mirrorlist" >> /etc/pacman.conf'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# TODO: some of these may be laptop-only?
|
|
||||||
|
|
||||||
# TODO: switch to Nautilus?
|
|
||||||
|
|
||||||
yay -Sy \
|
yay -Sy \
|
||||||
xf86-input-libinput \
|
xf86-input-libinput \
|
||||||
libinput libinput-gestures `# Trackpad Control` \
|
|
||||||
bluez bluez-libs bluez-utils bluez-tools `# Bluetooth` \
|
bluez bluez-libs bluez-utils bluez-tools `# Bluetooth` \
|
||||||
arc-gtk-theme `# GTK Theme` \
|
arc-gtk-theme `# GTK Theme` \
|
||||||
elementary-icon-theme `# GUI File Explorer Icons` \
|
elementary-icon-theme `# GUI File Explorer Icons` \
|
||||||
thunar thunar-volman gvfs `# GUI File Explorer + Volume Management/Auto-Mount Disks)` \
|
thunar thunar-volman gvfs `# GUI File Explorer + Volume Management/Auto-Mount Disks)` \
|
||||||
ttf-opensans `# Fonts` \
|
ttf-opensans ttf-dejavu ttf-liberation `# Fonts` \
|
||||||
avr-libc avr-gcc dfu-programmer dfu-util `# Keyboard Programming Utilities` \
|
avr-libc avr-gcc dfu-programmer dfu-util `# Keyboard Programming Utilities` \
|
||||||
|
xorg-xbacklight `# Xorg Backlight Control` \
|
||||||
gimp inkscape krita `# Image/Vector Editing Applications` \
|
gimp inkscape krita `# Image/Vector Editing Applications` \
|
||||||
audacity `# Audio Editing Application` \
|
audacity `# Audio Editing Application` \
|
||||||
deluge deluge-gtk `# GUI Torrent Client` \
|
accountsservice `# Mainly for User Avatars with Display Manager` \
|
||||||
|
deluge deluge-gtk cairo python-cairo `# GUI Torrent Client` \
|
||||||
gdm `# Display Manager of choice` \
|
gdm `# Display Manager of choice` \
|
||||||
pigz `# Multi-core gzipping` \
|
pigz `# Multi-core gzipping` \
|
||||||
samba `# Sharing Files with other (Windows) PCs` \
|
samba `# Sharing Files with other (Windows) PCs` \
|
||||||
gvfs-smb `# Auto-Detect Samba Shares?` \
|
gvfs-smb `# Auto-Detect Samba Shares` \
|
||||||
cmake `# Cross-Platform Make` \
|
cmake `# Cross-Platform Make` \
|
||||||
elixir nodejs erlang rustup `# Langs` \
|
elixir nodejs erlang rustup \
|
||||||
php `# PHP Language` \
|
php `# PHP Language` \
|
||||||
nginx `# Web Server` \
|
nginx `# Web Server` \
|
||||||
postgresql pgcli `# RDBMS` \
|
postgresql pgcli `# RDBMS` \
|
||||||
|
neofetch `# swag` \
|
||||||
cloc `# For counting lines of code` \
|
cloc `# For counting lines of code` \
|
||||||
noto-fonts noto-fonts-emoji `# Emoji` \
|
noto-fonts noto-fonts-emoji `# Emoji` \
|
||||||
discord `# Voice Chat` \
|
discord `# Chat` \
|
||||||
steam steamcmd lutris `# Games` \
|
steam steamcmd lutris `# Games` \
|
||||||
gnome-shell `# Guh-nome Guh-shell` \
|
gnome-shell `# Guh-nome Guh-shell` \
|
||||||
vlc `# Video Viewer` \
|
vlc `# Video Viewer` \
|
||||||
zathura zathura-pdf-mupdf `# Document Viewer` \
|
zathura zathura-pdf-mupdf `# Document Viewer` \
|
||||||
glu mesa wxgtk2 libpng `# Graphical Libs` \
|
libinput libinput-gestures `# Trackpad Control` \
|
||||||
|
glu mesa wxgtk2 libpng `# Various` \
|
||||||
gammastep `# Redshift for Wayland` \
|
gammastep `# Redshift for Wayland` \
|
||||||
dmenu `# Application Launcher` \
|
dmenu `# Application Launcher` \
|
||||||
python python-pip `# Python 3 Language` \
|
python python-pip `# Python 3 Language` \
|
||||||
|
hexyl `# CLI Hex Viewer` \
|
||||||
firefox-developer-edition `# Default Web Browser` \
|
firefox-developer-edition `# Default Web Browser` \
|
||||||
alsa-utils `# Audio Utilities` \
|
alsa-utils `# Audio Utilities` \
|
||||||
alsa-plugins `# Plugins for ALSA` \
|
alsa-plugins `# Plugins for ALSA` \
|
||||||
|
@ -55,9 +55,10 @@ yay -Sy \
|
||||||
wofi `# Sway app launcher` \
|
wofi `# Sway app launcher` \
|
||||||
waybar mako `# Sway Bar & Notifications` \
|
waybar mako `# Sway Bar & Notifications` \
|
||||||
slurp grim wl-clipboard `# Sway Screen Selection & Clipping` \
|
slurp grim wl-clipboard `# Sway Screen Selection & Clipping` \
|
||||||
pipewire pipewire-pulse pipewire-media-session `# Pipewire` \
|
pipewire pipewire-pulse libpipewire02 `# Pipewire` \
|
||||||
xdg-desktop-portal xdg-desktop-portal-wlr `# Screensharing` \
|
xdg-desktop-portal xdg-desktop-portal-wlr `# Screensharing` \
|
||||||
obs-studio-wayland obs-xdg-portal `# OBS` \
|
obs-studio-wayland obs-xdg-portal `# OBS` \
|
||||||
ttf-iosevka `# Primary Fonts` \
|
ttf-iosevka `# Primary Fonts` \
|
||||||
ttf-font-awesome `# Icon Font` \
|
ttf-font-awesome `# Icon Font` \
|
||||||
|
diff-so-fancy `# Fancy Diffs` \
|
||||||
ripcord `# Discord and Slack Client`
|
ripcord `# Discord and Slack Client`
|
||||||
|
|
|
@ -1,23 +1,34 @@
|
||||||
profile desktop-1x4kside {
|
profile desktop-1x4kside {
|
||||||
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 0,1200 scale 1 transform normal
|
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 0,1200 scale 1 transform normal
|
||||||
output "Dell Inc. DELL U2720Q CWTM623" enable mode 3840x2160@60Hz position 3440,0 scale 1.5 transform 90
|
output "Dell Inc. DELL U2720Q CWTM623" enable mode 3840x2160@60Hz position 3440,0 scale 1.5 transform 90
|
||||||
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
profile desktop-1x4kside2 {
|
profile desktop-1x4kside2 {
|
||||||
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,800 scale 1 transform normal
|
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,800 scale 1 transform normal
|
||||||
output "Dell Inc. DELL U2720Q D3TM623" enable mode 3840x2160@60Hz position 0,0 scale 1.5 transform 270
|
output "Dell Inc. DELL U2720Q D3TM623" enable mode 3840x2160@60Hz position 0,0 scale 1.5 transform 270
|
||||||
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
profile desktop-H-2x4kside2 {
|
profile desktop-H-4k {
|
||||||
output "Dell Inc. DELL U2720Q D3TM623" enable mode 3840x2160@60Hz position 0,0 scale 1.5 transform 270
|
|
||||||
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,800 scale 1 transform normal
|
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,800 scale 1 transform normal
|
||||||
output "Dell Inc. DELL U2720Q CWTM623" enable mode 3840x2160@60Hz position 4880,0 scale 1.5 transform 90
|
output "Dell Inc. DELL U2720Q CWTM623" enable mode 3840x2160@60Hz position 4880,0 scale 1.5 transform 90
|
||||||
exec "$DOTFILES_PATH/os/linux/kanshi/desktop-H-workspaces.sh"
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
|
}
|
||||||
|
|
||||||
|
profile desktop-H {
|
||||||
|
output "Samsung Electric Company CF791 HTRJ500315" enable mode 3440x1440@100Hz position 1440,560 scale 1 transform normal
|
||||||
|
output "Dell Inc. DELL U2719DC 5DL4QS2" enable mode 2560x1440@60Hz position 0,0 scale 1 transform 270
|
||||||
|
output "Dell Inc. DELL U2719DC 9DL4QS2" enable mode 2560x1440@60Hz position 4880,0 scale 1 transform 90
|
||||||
|
exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
profile tv4k {
|
profile tv4k {
|
||||||
output "Samsung Electric Company CF791 HTRJ500315" disable
|
output "Samsung Electric Company CF791 HTRJ500315" disable
|
||||||
|
output "Dell Inc. DELL U2719DC 5DL4QS2" disable
|
||||||
|
output "Dell Inc. DELL U2719DC 9DL4QS2" disable
|
||||||
output "Samsung Electric Company SyncMaster H1AK500000" enable mode 4096x2160@60Hz position 0,0 scale 1 transform normal
|
output "Samsung Electric Company SyncMaster H1AK500000" enable mode 4096x2160@60Hz position 0,0 scale 1 transform normal
|
||||||
|
# exec "$HOME/.config/lytedev-dotfiles/apps/de/kanshi/desktop-H-workspaces.sh"
|
||||||
}
|
}
|
||||||
|
|
||||||
profile desktop-ultrawide {
|
profile desktop-ultrawide {
|
||||||
|
|
|
@ -17,11 +17,11 @@ if ! [[ -f $LOCKFILE ]]; then
|
||||||
# setup_output 'Dell Inc. DELL U2719DC 5DL4QS2' 4 5 6
|
# setup_output 'Dell Inc. DELL U2719DC 5DL4QS2' 4 5 6
|
||||||
# setup_output 'Samsung Electric Company CF791 HTRJ500315' 1 2 3
|
# setup_output 'Samsung Electric Company CF791 HTRJ500315' 1 2 3
|
||||||
|
|
||||||
setup_output 'Dell Inc. DELL U2720Q CWTM623' 9 8
|
setup_output 'Dell Inc. DELL U2719DC 9DL4QS2' 9 8
|
||||||
setup_output 'Dell Inc. DELL U2720Q D3TM623' 6 5
|
setup_output 'Dell Inc. DELL U2719DC 5DL4QS2' 6 5
|
||||||
setup_output 'Samsung Electric Company CF791 HTRJ500315' 3 2
|
setup_output 'Samsung Electric Company CF791 HTRJ500315' 3 2
|
||||||
setup_output 'Dell Inc. DELL U2720Q CWTM623' 7
|
setup_output 'Dell Inc. DELL U2719DC 9DL4QS2' 7
|
||||||
setup_output 'Dell Inc. DELL U2720Q D3TM623' 4
|
setup_output 'Dell Inc. DELL U2719DC 5DL4QS2' 4
|
||||||
setup_output 'Samsung Electric Company CF791 HTRJ500315' 1
|
setup_output 'Samsung Electric Company CF791 HTRJ500315' 1
|
||||||
|
|
||||||
# setup_output 'Dell Inc. DELL U2719DC 9DL4QS2' 8 9 7
|
# setup_output 'Dell Inc. DELL U2719DC 9DL4QS2' 8 9 7
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
set $mod Mod4
|
set $mod Mod4
|
||||||
set $default_gap 0
|
set $default_gap 0
|
||||||
|
|
||||||
xwayland enable
|
|
||||||
focus_wrapping no
|
focus_wrapping no
|
||||||
gaps inner $default_gap
|
gaps inner $default_gap
|
||||||
smart_borders on|no_gaps
|
smart_borders on|no_gaps
|
||||||
|
@ -161,6 +160,8 @@ for_window [app_id="floating_terminal"] floating enable
|
||||||
for_window [class="floating_terminal"] floating enable
|
for_window [class="floating_terminal"] floating enable
|
||||||
# for_window [class=".*"] layout splitv
|
# for_window [class=".*"] layout splitv
|
||||||
|
|
||||||
|
output * bg $HOME/.wallpaper fill
|
||||||
|
|
||||||
client.focused #66d9ef #66d9ef #66d9ef #66d9ef #66d9ef
|
client.focused #66d9ef #66d9ef #66d9ef #66d9ef #66d9ef
|
||||||
client.focused_inactive #111111 #111111 #ffffff #111111 #111111
|
client.focused_inactive #111111 #111111 #ffffff #111111 #111111
|
||||||
client.unfocused #111111 #111111 #ffffff #111111 #111111
|
client.unfocused #111111 #111111 #ffffff #111111 #111111
|
||||||
|
@ -178,6 +179,4 @@ bar {
|
||||||
exec gammastep -t 6500:3500 -l 39.0:-94.5
|
exec gammastep -t 6500:3500 -l 39.0:-94.5
|
||||||
exec swayidle -w timeout 300 'swaylock -f -c 000000' timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000'
|
exec swayidle -w timeout 300 'swaylock -f -c 000000' timeout 600 'swaymsg "output * dpms off"' resume 'swaymsg "output * dpms on"' before-sleep 'swaylock -f -c 000000'
|
||||||
|
|
||||||
output * bg $HOME/.wallpaper fill
|
|
||||||
|
|
||||||
include $XDG_CONFIG_HOME/lytedev-env/*/sway/config
|
include $XDG_CONFIG_HOME/lytedev-env/*/sway/config
|
||||||
|
|
|
@ -10,8 +10,6 @@ set -q DOTFILES_PATH || begin
|
||||||
exit 1
|
exit 1
|
||||||
end
|
end
|
||||||
|
|
||||||
# set -Ux QT_QPA_PLATFORM xcb
|
|
||||||
# set -Ux QT_QPA_PLATFORM_PLUGIN_PATH /usr/lib/qt/plugins
|
|
||||||
set -Ux CLUTTER_BACKEND wayland
|
set -Ux CLUTTER_BACKEND wayland
|
||||||
set -Ux SDL_VIDEODRIVER wayland
|
set -Ux SDL_VIDEODRIVER wayland
|
||||||
set -Ux MOZ_ENABLE_WAYLAND 1
|
set -Ux MOZ_ENABLE_WAYLAND 1
|
||||||
|
@ -21,9 +19,4 @@ for s in $ENV_PATH/*/sway-init.d.fish
|
||||||
source $s (dirname $s)
|
source $s (dirname $s)
|
||||||
end
|
end
|
||||||
|
|
||||||
set initstr "\n(date): Initializsing Sway WM"
|
exec sway
|
||||||
set elogfile ~/.sway.error.log
|
|
||||||
set logfile ~/.sway.log
|
|
||||||
|
|
||||||
echo $initstr >> $logfile; echo $initstr >> $elogfile
|
|
||||||
exec sway >> $logfile 2>> $elogfile
|
|
||||||
|
|
Reference in a new issue