diff options
| author | Adam T. Carpenter <atc@53hor.net> | 2024-02-04 17:19:53 -0500 | 
|---|---|---|
| committer | Adam T. Carpenter <atc@53hor.net> | 2024-02-04 17:19:53 -0500 | 
| commit | 61036390fa3ebc06081d54574a3a33a18e33a184 (patch) | |
| tree | 1e7017f16c8d2d294859ae9b427bcb78880de062 | |
| parent | 2ae09557fc81d668c70620ace7e2ee0670f97cef (diff) | |
| download | dotfiles-master.tar.xz dotfiles-master.zip | |
| -rw-r--r-- | .config/rofi/config.rasi | 2 | ||||
| -rw-r--r-- | .zprofile | 12 | ||||
| -rw-r--r-- | .zshenv | 2 | ||||
| -rw-r--r-- | .zshrc | 6 | 
4 files changed, 12 insertions, 10 deletions
| diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi index 90b89fc..814018f 100644 --- a/.config/rofi/config.rasi +++ b/.config/rofi/config.rasi @@ -1,7 +1,7 @@  @theme "wpg"  configuration {  	modi: "combi"; -	combi-modi: "run,ssh,emoji,pass:rofi-pass.sh pass,otp:rofi-pass.sh otp"; +	combi-modi: "run,ssh,emoji,pass:~/src/scripts/rofi-pass.sh pass,otp:~/src/scripts/rofi-pass.sh otp";  	show-icons: true;  	sidebar-mode: true;  /*	font: "mono 12";*/ @@ -1,6 +1,8 @@ -export XDG_RUNTIME_DIR=/var/run/user/`id -u` \ -	XCURSOR_PATH=${XCURSOR_PATH}:~/.local/share/icons \ -	MOZ_ENABLE_WAYLAND=1 \ -	GDK_BACKEND=wayland \ -	MOZ_DBUS_REMOTE=1 +export XCURSOR_PATH=${XCURSOR_PATH}:~/.local/share/icons + +export XDG_RUNTIME_DIR=/var/run/user/`id -u` +	#XCURSOR_PATH=${XCURSOR_PATH}:~/.local/share/icons \ +	#MOZ_ENABLE_WAYLAND=1 \ +	#GDK_BACKEND=wayland \ +	#MOZ_DBUS_REMOTE=1  #[ -z $DISPLAY ] && [ $(tty) = /dev/ttyv0 ] && exec sway > /var/log/sway.log @@ -2,7 +2,7 @@ export BROWSER=firefox  export DOOMWADDIR=~/.local/share/crispy-doom/wads  export EDITOR=vim  export VISUAL=$EDITOR -export GTK2_RC_FILES=$HOME/.local/share/themes/FlatColor/gtk-2.0/gtkrc +#export GTK2_RC_FILES=$HOME/.local/share/themes/FlatColor/gtk-2.0/gtkrc  export PAGER=less  export PATH=$HOME/.local/scripts:$HOME/.local/bin/:$HOME/.cargo/bin:$HOME/node_modules/.bin:$PATH @@ -13,7 +13,7 @@ set_cwd() {  autoload -Uz add-zsh-hook  add-zsh-hook chpwd set_cwd -## Options  +## Options  setopt correct                                                  # Auto correct mistakes  setopt extendedglob                                             # Extended globbing. Allows using regular expressions with *  setopt nocaseglob                                               # Case insensitive globbing @@ -36,10 +36,10 @@ HISTSIZE=1000  SAVEHIST=100000  WORDCHARS=${WORDCHARS//[&.;]}                                 # Don't consider certain characters part of the word -## Keybindings  +## Keybindings  bindkey -v -## Aliases  +## Aliases  [ -f "$HOME/.config/aliasrc" ] && . "$HOME/.config/aliasrc"  ## Plugins |