st 0.8.2 config

This commit is contained in:
joachimschmidt557 2020-04-14 12:42:28 +02:00
parent c3c735018e
commit 4c367e05cd
3 changed files with 30 additions and 25 deletions

View file

@ -20,14 +20,16 @@ fontconfig:
srcfile: $(DESTDIR)/src/.srcfile srcfile: $(DESTDIR)/src/.srcfile
st: st: $(DESTDIR)/src/st/config.h
install -Dm600 st/config.def.h $(DESTDIR)/src/st/config.def.h
.PHONY: fish i3 i3status vis Xresources bspwm sxhkd fontconfig srcfile st .PHONY: fish i3 i3status vis Xresources bspwm sxhkd fontconfig srcfile st
## Actual file operations ## Actual file operations
$(DESTDIR)/src/st/config.h: $(PWD)/st/config.h
ln -sf $^ $@
$(DESTDIR)$(PREFIX)/fish/config.fish: $(PWD)/fish/config.fish $(DESTDIR)$(PREFIX)/fish/config.fish: $(PWD)/fish/config.fish
ln -sf $^ $@ ln -sf $^ $@

View file

@ -181,7 +181,7 @@ bar {
# MY OWN CONFIGS # MY OWN CONFIGS
# #
# Set root window color # Set root window color
exec --no-startup-id xsetroot -solid "#333333" # exec --no-startup-id xsetroot -solid "#333333"
# Set fehbg # Set fehbg
exec --no-startup-id ~/.fehbg exec --no-startup-id ~/.fehbg
@ -199,24 +199,24 @@ bindsym ctrl+$mod+b exec blue
hide_edge_borders smart hide_edge_borders smart
# Start redshift # Start redshift
exec --no-startup-id redshift -t 6000:2000 -l 49.87167:8.65027 # exec --no-startup-id redshift -t 6000:2000 -l 49.87167:8.65027
exec --no-startup-id amixer set Master 0 # exec --no-startup-id amixer set Master 0
# Change volume # Change volume
bindsym XF86AudioRaiseVolume exec st -e pamix # bindsym XF86AudioRaiseVolume exec st -e pamix
bindsym XF86AudioLowerVolume exec st -e pamix # bindsym XF86AudioLowerVolume exec st -e pamix
bindsym XF86AudioMute exec st -e pamix # bindsym XF86AudioMute exec st -e pamix
# Screenshot # Screenshot
bindsym $mod+z exec scrot # bindsym $mod+z exec scrot
# Keyboard layout # Keyboard layout
exec --no-startup-id setxkbmap -layout de # exec --no-startup-id setxkbmap -layout de
# DPI # DPI
exec --no-startup-id xrandr --dpi 160 # exec --no-startup-id xrandr --dpi 160
exec --no-startup-id xrdb -merge ~/.Xresources # exec --no-startup-id xrdb -merge ~/.Xresources
# Polybar # Polybar
# exec --no-startup-id $HOME/.config/polybar/launch.sh # exec --no-startup-id $HOME/.config/polybar/launch.sh

View file

@ -30,9 +30,9 @@ static float chscale = 1.0;
/* /*
* word delimiter string * word delimiter string
* *
* More advanced example: L" `'\"()[]{}" * More advanced example: " `'\"()[]{}"
*/ */
wchar_t *worddelimiters = L" "; char *worddelimiters = " ";
/* selection timeouts (in milliseconds) */ /* selection timeouts (in milliseconds) */
static unsigned int doubleclicktimeout = 300; static unsigned int doubleclicktimeout = 300;
@ -150,22 +150,14 @@ static unsigned int mousebg = 0;
*/ */
static unsigned int defaultattr = 11; static unsigned int defaultattr = 11;
/*
* Force mouse select/shortcuts while mask is active (when MODE_MOUSE is set).
* Note that if you want to use ShiftMask with selmasks, set this to an other
* modifier, set to 0 to not use it.
*/
static uint forcemousemod = ShiftMask;
/* /*
* Internal mouse shortcuts. * Internal mouse shortcuts.
* Beware that overloading Button1 will disable the selection. * Beware that overloading Button1 will disable the selection.
*/ */
static MouseShortcut mshortcuts[] = { static MouseShortcut mshortcuts[] = {
/* mask button function argument release */ /* button mask string */
{ XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 }, { Button4, XK_ANY_MOD, "\031" },
{ XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, { Button5, XK_ANY_MOD, "\005" },
{ XK_ANY_MOD, Button5, ttysend, {.s = "\005"} },
}; };
/* Internal keyboard shortcuts. */ /* Internal keyboard shortcuts. */
@ -203,6 +195,10 @@ static Shortcut shortcuts[] = {
* * 0: no value * * 0: no value
* * > 0: cursor application mode enabled * * > 0: cursor application mode enabled
* * < 0: cursor application mode disabled * * < 0: cursor application mode disabled
* crlf value
* * 0: no value
* * > 0: crlf mode is enabled
* * < 0: crlf mode is disabled
* *
* Be careful with the order of the definitions because st searches in * Be careful with the order of the definitions because st searches in
* this table sequentially, so any XK_ANY_MOD must be in the last * this table sequentially, so any XK_ANY_MOD must be in the last
@ -221,6 +217,13 @@ static KeySym mappedkeys[] = { -1 };
*/ */
static uint ignoremod = Mod2Mask|XK_SWITCH_MOD; static uint ignoremod = Mod2Mask|XK_SWITCH_MOD;
/*
* Override mouse-select while mask is active (when MODE_MOUSE is set).
* Note that if you want to use ShiftMask with selmasks, set this to an other
* modifier, set to 0 to not use it.
*/
static uint forceselmod = ShiftMask;
/* /*
* This is the huge key array which defines all compatibility to the Linux * This is the huge key array which defines all compatibility to the Linux
* world. Please decide about changes wisely. * world. Please decide about changes wisely.