Theming with catppuccino and fixed some theme vars
This commit is contained in:
parent
59ee8bc141
commit
d2fe90439c
|
@ -1,23 +1,41 @@
|
|||
#output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
|
||||
set $icon 'Nordzy'
|
||||
set $cursor 'Numix-Cursor'
|
||||
set $gtktheme 'Catppuccin-Macchiato-Standard-Lavender-Dark'
|
||||
set $font 'Noto Sans 10'
|
||||
|
||||
output DP-3 resolution 1920x1080@143.855hz pos 0 540
|
||||
output HDMI-A-1 resolution 1920x1080@72.038hz pos 1920 0 transform 90
|
||||
|
||||
input type:keyboard xkb_numlock enabled
|
||||
|
||||
font pango:JetbrainsMono Normal 9
|
||||
|
||||
# Colours based on Catppuccino Macchiato Lavendar
|
||||
bar {
|
||||
position top
|
||||
status_command while ~/.config/sway/status.sh; do sleep 1; done
|
||||
colors {
|
||||
statusline #ffffff
|
||||
background #323232
|
||||
inactive_workspace #32323200 #32323200 #5c5c5c
|
||||
statusline #cad3f5
|
||||
background #1e2030
|
||||
active_workspace #494d64 #1e2030 #cad3f5
|
||||
focused_background #24273a
|
||||
focused_workspace #5b6078 #24273a #cad3f5
|
||||
inactive_workspace #1e2030 #1e2030 #5b6078
|
||||
}
|
||||
# tray {
|
||||
# icon_theme $icon
|
||||
# }
|
||||
}
|
||||
|
||||
# focus_follows_mouse no
|
||||
client.focused #5b6078 #24273a #cad3f5 #5b6078
|
||||
client.focused_inactive #494d64 #1e2030 #cad3f5
|
||||
client.unfocused #494d64 #1e2030 #5b6078
|
||||
|
||||
include /etc/sway/config.d/*
|
||||
include /home/siina/.config/sway/config.d/*
|
||||
|
||||
### Screencast fix
|
||||
# Screencast fix
|
||||
exec --no-startup-id dbus-update-activation-environment --all
|
||||
# Enable agent storage for things like nextcloud-client
|
||||
exec gnome-keyring-daemon --start --components=secrets
|
||||
exec export $(gnome-keyring-daemon)
|
||||
|
|
|
@ -5,6 +5,6 @@ set $down j
|
|||
set $up k
|
||||
set $right l
|
||||
|
||||
set $term alacritty
|
||||
set $term kitty
|
||||
|
||||
set $menu bemenu-run -p "" | xargs swaymsg exec --
|
|
@ -2,8 +2,3 @@ assign [title="Steam"] 2
|
|||
assign [title="Discord"] 3
|
||||
assign [app_id="thunderbird"] Mail
|
||||
assign [app_id="com.obsproject.Studio"] OBS
|
||||
|
||||
# Games
|
||||
assign [class="Project Zomboid"] Project Zomboid
|
||||
assign [class="com.wurmonline.client.launcherfx.WurmMain"] Wurm Online
|
||||
assign [title="VRChat"] VRChat
|
||||
|
|
|
@ -7,7 +7,7 @@ exec nextcloud
|
|||
exec tmux new -ds profanity profanity
|
||||
|
||||
workspace 1
|
||||
exec alacritty
|
||||
exec kitty
|
||||
|
||||
workspace 2
|
||||
exec /usr/bin/steam
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
# Black Desert
|
||||
assign [title="^Black Desert$"] Black Desert
|
||||
|
||||
# Project Zomboid
|
||||
assign [class="Project Zomboid"] Project Zomboid
|
||||
|
||||
# Wurm Online
|
||||
for_window [class="com.wurmonline.client.launcherfx.WurmMain"] floating enable
|
||||
assign [class="com.wurmonline.client.launcherfx.WurmMain"] Wurm Online
|
||||
|
||||
# VRChat
|
||||
assign [title="VRChat"] VRChat
|
|
@ -9,4 +9,4 @@ bindsym $ps2 exec grim -g "$(slurp)" - | wl-copy
|
|||
bindsym $ps3 exec grim $psf
|
||||
bindsym $ps4 exec grim -g "$(slurp)" $psf
|
||||
|
||||
bindsym $mod+shift+s exec grimshot copy area
|
||||
#bindsym $mod+shift+s exec grimshot copy area
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
set $cursor 'Numix-Cursor'
|
||||
set $gnome-schema org.gnome.desktop.interface
|
||||
seat seat0 xcursor_theme $cursor
|
||||
exec_always {
|
||||
gsettings set $gnome-schema cursor-theme $cursor
|
||||
gsettings set $gnome-schema font-name 'Noto Sans 10
|
||||
gsettings set $gnome-schema font-name $font
|
||||
gsettings set $gnome-schema gtk-theme $gtktheme
|
||||
gsettings set $gnome-schema icon-theme $icon
|
||||
}
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
set $bgdir '$HOME/Pictures/Wallpaper'
|
||||
output HDMI-A-1 bg $bgdir/dark-night-river-forest-minimal-art.jpg fill
|
||||
output DP-3 bg $bgdir/moose-in-the-night-hd.png fill
|
Loading…
Reference in New Issue