diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..3e58ded --- /dev/null +++ b/.config/gtk-3.0/settings.ini @@ -0,0 +1,18 @@ +[Settings] +gtk-theme-name=Arc-Dark +gtk-icon-theme-name=breeze-dark +gtk-font-name=IBM Plex Sans 9 +gtk-cursor-theme-name=Bibata_Oil +gtk-cursor-theme-size=32 +gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ +gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR +gtk-button-images=0 +gtk-menu-images=0 +gtk-enable-event-sounds=0 +gtk-enable-input-feedback-sounds=0 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintslight +gtk-xft-rgba=rgb +# gtk-decoration-layout=menu:close +# gtk-application-prefer-dark-theme=1 diff --git a/.config/sway/config b/.config/sway/config index 0b02231..1bb5cee 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -73,9 +73,9 @@ bindsym Mod4+Shift+c kill bindsym Mod4+Shift+q exit bindsym Mod4+Return exec $term bindsym Mod4+Shift+Return exec $term tmux attach -t0 -bindsym Mod4+Control+Return exec "autossh -M21001 -f -A -T home-dev sleep inf; $term mosh -p 2022 home tmux attach" -bindsym Mod4+p exec rofi -show run -bindsym Mod4+e exec rofi -show emoji -modi emoji +bindsym Mod4+Control+Return exec "autossh -M21001 -f -A -T home-dev sleep inf; $term mosh -p 2022 home -- tmux attach -t 0" +bindsym Mod4+p exec wofi --show run +bindsym Mod4+e exec ~/bin/wofi-emoji bindsym Mod4+l exec $lock bindsym Mod4+Shift+l exec 'swaymsg "output * dpms off"; $lock' bindsym Mod4+space exec makoctl dismiss -a diff --git a/.config/wofi/style.css b/.config/wofi/style.css new file mode 100644 index 0000000..f1266cc --- /dev/null +++ b/.config/wofi/style.css @@ -0,0 +1,40 @@ +window { + border: 1px solid rgba(96,125,139,0.7); + background-color: rgba(38,50,56 ,0.8); + border-radius: 15px; +font: 2em "IBM Plex Sans", sans-serif; +} + +#outer-box { + margin: 25px; +} + +#input { +margin: 5px; +background-color: rgba(96,125,139,0.8); +color: rgba(236,239,241 ,1); +border-radius: 4px; +} + +#inner-box { +} + + +#scroll { +} + +#text { + margin: 5px 1em; + color: rgba(96,125,139 ,1); +} + +#text:selected { + color: rgba(255,213,79 ,1); +} + +#entry { +} + +#entry:selected { + background-color: rgba(0,0,0,0.7); +} diff --git a/.gitconfig b/.gitconfig index cbefffa..9275533 100644 --- a/.gitconfig +++ b/.gitconfig @@ -154,4 +154,4 @@ diff-chunk = magenta default bold [user "netent"] name = Daniel Lundin email = daniel.lundin@netent.com - signingkey = 18DB5948BBDB740A + signingkey = B9D5337DEEE9C1D8 diff --git a/.gtkrc-2.0 b/.gtkrc-2.0 new file mode 100644 index 0000000..dcd3ddd --- /dev/null +++ b/.gtkrc-2.0 @@ -0,0 +1,15 @@ +gtk-theme-name="Arc-Dark" +gtk-icon-theme-name="breeze-dark" +gtk-font-name="IBM Plex Sans 9" +gtk-cursor-theme-name="Bibata_Oi" +gtk-cursor-theme-size=32 +gtk-toolbar-style=GTK_TOOLBAR_BOTH_HORIZ +gtk-toolbar-icon-size=GTK_ICON_SIZE_SMALL_TOOLBAR +gtk-button-images=0 +gtk-menu-images=0 +gtk-enable-event-sounds=0 +gtk-enable-input-feedback-sounds=0 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle="hintslight" +gtk-xft-rgba="rgb diff --git a/.ssh/config b/.ssh/config index 90fc583..2112d0d 100644 --- a/.ssh/config +++ b/.ssh/config @@ -3,7 +3,7 @@ Hostname porky.eintr.org ForwardAgent yes Host home -Hostname home.eintr.org +Hostname porky.eintr.org ForwardAgent no Host home-dev diff --git a/.zshrc b/.zshrc index 016af4a..62dac33 100644 --- a/.zshrc +++ b/.zshrc @@ -289,9 +289,14 @@ export ANSIBLE_NOCOWS=1 export PATH=$HOME/.cargo/bin:$PATH ## GTK -export GDK_SCALE=2 -#export GDK_DPI_SCALE=1 -#export GTK_THEME=Adwaita:dark +export GDK_SCALE=1 +export GDK_DPI_SCALE=1.5 +export GTK_THEME=Arc-Dark + +## Video acceleration +export VDPAU_DRIVER=va_gl +export MOZ_WEBRENDER=1 +export MOZ_ENABLE_WAYLAND=1 [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh