Compare commits

...

2 Commits

Author SHA1 Message Date
trimill c140a38550
update things 2023-12-14 15:07:58 -05:00
TriMill 464ee8593d
made changes 2023-09-21 11:47:51 -04:00
8 changed files with 97 additions and 25 deletions

View File

@ -9,7 +9,7 @@ window:
y: 5
decorations: full
dynamic_title: true
opacity: 0.90
opacity: 0.85
font:
normal:

View File

@ -6,6 +6,7 @@
<prefer>
<family>Twemoji</family>
<family>Font Awesome 6 Pro Regular</family>
<family>Liberation Serif</family>
<family>Times New Roman</family>
<family>DejaVu Serif</family>
</prefer>

View File

@ -1,4 +1,4 @@
#
# Copy this to ~/.config/sway/config and edit it to your liking.
#
# Read `man 5 sway` for a complete reference.
@ -22,11 +22,12 @@ exec --no-startup-id webcord.sh
exec --no-startup-id autotiling
exec --no-startup-id nm-applet --indicator
exec --no-startup-id element.sh
exec --no-startup-id thunderbird
assign [class="Element"] workspace number 8
assign [app_id="WebCord"] workspace number 9
assign [app_id="thunderbird"] workspace number 9
assign [app_id="Element"] workspace number 9
workspace 1 output DP-1
workspace 1 output DP-3
workspace 9 output eDP-1
for_window [app_id="scratch_term"] move scratchpad, resize set 960 640
@ -34,6 +35,8 @@ for_window [app_id="scratch_calc"] move scratchpad, resize set 960 640
for_window [app_id="scratch_cmus"] move scratchpad, resize set 960 640
for_window [app_id="scratch_htop"] move scratchpad, resize set 960 640
for_window [app_id="wofi"] opacity 0.8
# gnome time
set $gnome-schema org.gnome.desktop.interface
exec_always {
@ -45,15 +48,19 @@ exec_always {
# swaymsg -t get_outputs
output eDP-1 resolution 3840x2400 position 2133,0
output DP-1 resolution 2560x1440 position 0,0 scale 1.2
output DP-3 resolution 2560x1440 position 0,0 scale 1.2
#output eDP-1 resolution 3840x2400 position 1920,0
#output DP-1 resolution 1920x1080 position 0,0
#output DP-3 resolution 1920x1080 position 0,0
input "type:keyboard" {
xkb_layout us
xkb_layout uscustom
xkb_options compose:menu,caps:escape
}
input "type:touchpad" {
tap enable
}
# Idle configuration
exec swayidle -w \
timeout 300 'swaylock -f -c 14171d' \
@ -149,8 +156,11 @@ bindsym $mod+Shift+l move right
bindsym $mod+Ctrl+l resize grow width 10px
bindsym $mod+c exec dmenu_kblayout
bindsym $mod+b splith
bindsym $mod+Shift+c layout tabbed
bindsym $mod+v splitv
bindsym $mod+Shift+v layout splitv
bindsym $mod+b splith
bindsym $mod+Shift+b layout splith
bindsym $mod+n exec pkill -USR1 gammastep || gammastep -O 4000
bindsym $mod+Shift+n exec pkill -USR1 gammastep || gammastep -O 2500
@ -159,24 +169,25 @@ bindgesture swipe:right workspace next
bindgesture swipe:left workspace prev
# class border backgr. text indicator child_border
client.focused #4d4754 #14171d #ffffff #ada0a8 #4d4754
client.focused_inactive #14171d #14171d #ffffff #4d4754 #14171d
client.unfocused #14171d #14171d #ffffff #4d4754 #14171d
client.urgent #a63a3a #a63a3a #ffffff #cc5c5c #a63a3a
client.placeholder #14171d #14171d #ffffff #14171d #14171d
client.background #14171d
# class border backgr. text indicator child_border
client.background #14171d
client.focused #4d4754 #14171d #ffffff #ada0a8 #4d4754
client.focused_inactive #4d4754 #14171d #ffffff #4d4754 #14171d
client.focused_tab_title #4d4754 #14171d #ffffff
client.unfocused #14171d #14171d #ffffff #4d4754 #14171d
client.urgent #cc5c5c #a63a3a #ffffff #cc5c5c #a63a3a
# Status Bar:
bar swaybar_command waybar
# SwayFX
shadows on
shadows enable
shadow_blur_radius 15
shadow_color #14171dff
blur enable
layer_effects "waybar" blur enable; shadows enable;
blur_radius 4
blur_passes 2
layer_effects "waybar" blur enable; shadows enable
layer_effects "wofi" blur enable; shadows enable
include /etc/sway/config.d/*

View File

@ -9,12 +9,14 @@
"modules-right": [
"custom/cmus",
"custom/newsboat",
"wireplumber",
"backlight",
"cpu",
"memory",
"temperature",
"battery",
"clock",
"tray"
"tray",
],
"sway/workspaces": {
"disable-scroll": true,
@ -52,6 +54,15 @@
"format-warning": " {capacity}%",
"format-critical": " {capacity}%"
},
"wireplumber": {
"format": " {volume}",
"format-muted": " mute",
"on-click": "pavucontrol",
"ignored-sinks": ["Easy Effects Sink"]
},
"backlight": {
"format": " {percent}%"
},
"custom/cmus": {
"return-type": "json",
"exec": "$HOME/.config/waybar/custom_cmus.lua 2> /dev/null"

View File

@ -62,6 +62,7 @@ button {
#backlight,
#network,
#pulseaudio,
#wireplumber,
#custom-media,
#tray,
#mode,
@ -69,6 +70,7 @@ button {
#scratchpad,
#custom-cmus,
#custom-newsboat,
#custom-unixtime,
#mpd {
padding: 0 10px;
border-right: 1px solid #4d4754;
@ -90,6 +92,17 @@ button {
margin: 0 4px;
}
#wireplumber {
color: #97bd5e;
}
#wireplumber.muted {
color: #cc5c5c;
}
#backlight {
color: #f0c767;
}
#battery {
color: #97bd5e;
@ -123,6 +136,10 @@ button {
color: #de7e54;
}
#custom-unixtime {
color: #f0c767;
}
#tray > .passive {
-gtk-icon-effect: dim;
}

View File

@ -3,9 +3,13 @@
font-family: monospace;
}
window {
opacity: 0.85;
}
#input {
margin: 2px;
background-color: #14171d;
background-color: #4d4754;
color: #c7c6c3;
}
@ -15,7 +19,7 @@
#outer-box {
padding: 2px;
background-color: #4d4754;
background-color: #14171d;
}
#scroll {

View File

@ -13,6 +13,10 @@ export FILE=/bin/thunar
export PAGER=/bin/less
export TERMINAL=/bin/alacritty
export XMODIFIERS=@im=fcitx
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export GNUPGHOME="$HOME/.config/gnupg"
export CARGO_HOME="$HOME/.local/share/cargo"
export RUSTUP_HOME="$HOME/.local/share/rustup"

28
.zshrc
View File

@ -3,6 +3,16 @@ HISTSIZE=10000
SAVEHIST=10000
HISTFILE=~/.histfile
gpg-connect-agent updatestartuptty /bye &> /dev/null
export GPG_TTY=$(tty)
SSH_AUTH_SOCK="/run/user/$(id -u)/gnupg/S.gpg-agent.ssh"
export SSH_AUTH_SOCK
gpgconf --launch gpg-agent
# opam configuration
[[ ! -r /home/trimill/.opam/opam-init/init.zsh ]] || source /home/trimill/.opam/opam-init/init.zsh > /dev/null 2> /dev/null
eval $(opam env)
setopt extendedglob
bindkey -e
tabs 4
@ -34,8 +44,6 @@ man() {
man "$@"
}
[ $NOEXIT ] && alias exit="echo Exiting is disabled"
#
# Plugins
#
@ -61,6 +69,16 @@ ZSH_THEME_GIT_PROMPT_PREFIX="%F{13} ["
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
RPROMPT='[%(?.%F{10}.%F{9})%?%F{15}]'
#
# Window title
#
function precmd () {
printf "\e]0;%s\a" "$(basename "$PWD")$ zsh"
}
function preexec () {
printf "\e]0;%s\a" "$(basename "$PWD")$ $1"
}
#
# Aliases
#
@ -110,6 +128,8 @@ alias ssht="ssh -D 1080"
alias irc="ssh -t apiaceae tmux attach -t weechat"
alias firefox=librewolf
alias e="emacs -nw"
#
# Todo
#
@ -118,3 +138,7 @@ todomsg=$(todo)
[ "$todomsg" != "" ] && printf "TODO: \n%s\n" "$todomsg"
return 0
# Load Angular CLI autocompletion.
source <(ng completion script)