Wofi, firefox and new pgp key
This commit is contained in:
parent
39f04b8a2e
commit
8865438d67
7 changed files with 86 additions and 8 deletions
18
.config/gtk-3.0/settings.ini
Normal file
18
.config/gtk-3.0/settings.ini
Normal file
|
@ -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
|
|
@ -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
|
||||
|
|
40
.config/wofi/style.css
Normal file
40
.config/wofi/style.css
Normal file
|
@ -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);
|
||||
}
|
|
@ -154,4 +154,4 @@ diff-chunk = magenta default bold
|
|||
[user "netent"]
|
||||
name = Daniel Lundin
|
||||
email = daniel.lundin@netent.com
|
||||
signingkey = 18DB5948BBDB740A
|
||||
signingkey = B9D5337DEEE9C1D8
|
||||
|
|
15
.gtkrc-2.0
Normal file
15
.gtkrc-2.0
Normal file
|
@ -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
|
|
@ -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
|
||||
|
|
11
.zshrc
11
.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
|
||||
|
||||
|
|
Loading…
Reference in a new issue