Compare commits
6 commits
bd23b6d2e3
...
57f05f695c
Author | SHA1 | Date | |
---|---|---|---|
|
57f05f695c | ||
|
07d7b156a8 | ||
|
c76c984cc5 | ||
|
67b8dd0a41 | ||
|
380f5bb8d0 | ||
|
868b84de3a |
7 changed files with 43 additions and 2 deletions
28
de/home/.config/de-vars/colors/seoul256/colors-variables.css
Normal file
28
de/home/.config/de-vars/colors/seoul256/colors-variables.css
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/* CSS variables
|
||||||
|
Generated by 'wal' */
|
||||||
|
:root {
|
||||||
|
--wallpaper: url("None");
|
||||||
|
|
||||||
|
/* Special */
|
||||||
|
--background: #111317;
|
||||||
|
--foreground: #e4e4e4;
|
||||||
|
--cursor: #d68787;
|
||||||
|
|
||||||
|
/* Colors */
|
||||||
|
--color0: #111317;
|
||||||
|
--color1: #d68787;
|
||||||
|
--color2: #5f865f;
|
||||||
|
--color3: #d8af5f;
|
||||||
|
--color4: #85add4;
|
||||||
|
--color5: #d7afaf;
|
||||||
|
--color6: #87afaf;
|
||||||
|
--color7: #d0d0d0;
|
||||||
|
--color8: #576176;
|
||||||
|
--color9: #d75f87;
|
||||||
|
--color10: #87af87;
|
||||||
|
--color11: #ffd787;
|
||||||
|
--color12: #add4fb;
|
||||||
|
--color13: #ffafaf;
|
||||||
|
--color14: #87d7d7;
|
||||||
|
--color15: #e4e4e4;
|
||||||
|
}
|
|
@ -171,7 +171,7 @@ SetEditor=false
|
||||||
1920x1200 screen: Height=346
|
1920x1200 screen: Height=346
|
||||||
1920x1200 screen: Width=1043
|
1920x1200 screen: Width=1043
|
||||||
2 screens: Height=1108
|
2 screens: Height=1108
|
||||||
2 screens: Width=939
|
2 screens: Width=1020
|
||||||
2048x1280 screen: Height=713
|
2048x1280 screen: Height=713
|
||||||
2048x1280 screen: Width=984
|
2048x1280 screen: Width=984
|
||||||
3 screens: Height=1054
|
3 screens: Height=1054
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
# Terminal
|
# Terminal
|
||||||
set $term alacritty
|
set $term alacritty
|
||||||
# Launcher
|
# Launcher
|
||||||
set $menu wofi --show drun -a --insensitive --allow-images | xargs swaymsg exec --
|
set $menu worf --show drun -a true --insensitive true --allow-images true | xargs swaymsg exec --
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
#run at start
|
#run at start
|
||||||
exec {
|
exec {
|
||||||
# eww daemon
|
# eww daemon
|
||||||
|
ydotoold
|
||||||
autotiling-rs
|
autotiling-rs
|
||||||
nm-applet
|
nm-applet
|
||||||
blueman-applet
|
blueman-applet
|
||||||
|
|
|
@ -40,4 +40,6 @@ bindsym {
|
||||||
$mod+shift+m exec stickynotes
|
$mod+shift+m exec stickynotes
|
||||||
#gocryptfs
|
#gocryptfs
|
||||||
$mod+shift+g exec gocryptfs-wofi
|
$mod+shift+g exec gocryptfs-wofi
|
||||||
|
#emoji
|
||||||
|
$mod+e exec "$HOME/.config/sway/scripts/emoji-keyboard.sh"
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,7 @@ set {
|
||||||
# Blur
|
# Blur
|
||||||
layer_effects {
|
layer_effects {
|
||||||
"wofi" $layer_blur
|
"wofi" $layer_blur
|
||||||
|
"worf" $layer_blur
|
||||||
"gtk_layer_shell" $layer_blur
|
"gtk_layer_shell" $layer_blur
|
||||||
"swaync-control-center" $layer_blur
|
"swaync-control-center" $layer_blur
|
||||||
"swaync-notification-window" $layer_blur
|
"swaync-notification-window" $layer_blur
|
||||||
|
|
9
de/home/.config/sway/scripts/emoji-keyboard.sh
Executable file
9
de/home/.config/sway/scripts/emoji-keyboard.sh
Executable file
|
@ -0,0 +1,9 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
e=$(worf --show emoji --emoji-stdout true --emoji-hide-string true --columns 4 --content-halign=center --width 600 --style "${HOME}/.config/worf/emoji.css")
|
||||||
|
if [[ -z "${e}" ]];then
|
||||||
|
echo "no emoji selected"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "${e}"
|
||||||
|
ydotool type "${e}"
|
Loading…
Add table
Reference in a new issue