fix smaller things

This commit is contained in:
Marco Thomas
2021-08-31 17:53:09 +02:00
parent 8a55fc0c4b
commit a68ec2b435
3 changed files with 4 additions and 13 deletions

View File

@@ -11,7 +11,7 @@ floating_modifier $mod
workspace_layout stacking workspace_layout stacking
### keybinds for starting ### keybinds for starting
bindsym $mod+Return exec --no-startup-id "terminal.sh" bindsym $mod+Return exec --no-startup-id "alacritty"
bindsym $mod+d exec --no-startup-id "dmenu_run" bindsym $mod+d exec --no-startup-id "dmenu_run"
bindsym $mod+Shift+s exec --no-startup-id "flameshot gui" bindsym $mod+Shift+s exec --no-startup-id "flameshot gui"
@@ -120,8 +120,6 @@ bar {
} }
} }
# ebdbb2
set $gruv_bg "#f2e5bc" set $gruv_bg "#f2e5bc"
set $gruv_bg_darker "#ebdbb2" set $gruv_bg_darker "#ebdbb2"
set $gruv_fg "#282828" set $gruv_fg "#282828"
@@ -146,8 +144,5 @@ exec --no-startup-id $HOME/.screenlayout/layout.sh
# set wallpaper # set wallpaper
exec --no-startup-id $HOME/scripts/wallpaper.sh exec --no-startup-id $HOME/scripts/wallpaper.sh
# set keyboard layout
exec --no-startup-id "setxkbmap -layout eu"
# set X things # set X things
exec --no-startup-id "xrdb -merge $HOME/.Xresources" exec --no-startup-id "xrdb -merge $HOME/.Xresources"

View File

@@ -1,5 +1,8 @@
# executed on login # executed on login
# keyboard layout
setxkbmap -layout za
# path # path
export PATH=$PATH:$HOME/scripts:$HOME/.cargo/bin:$HOME/.cabal/bin:$HOME/.ghcup/bin:$HOME/.local/bin export PATH=$PATH:$HOME/scripts:$HOME/.cargo/bin:$HOME/.cabal/bin:$HOME/.ghcup/bin:$HOME/.local/bin

View File

@@ -1,7 +0,0 @@
#!/bin/sh
if [ $USER == "marc" ]; then
alacritty
else
xterm
fi