bind = $suremod, V, togglefloating,
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
-bind = $mainmod, Return, exec, foot -L /usr/bin/fish --
-bind = $mainmod Shift, Return, exec, foot -w 1280x800 -a popup -L /usr/bin/fish --
+bind = $mainmod, Return, exec, foot
+bind = $mainmod Shift, Return, exec, foot -w 1280x800 -a popup
bind = $mainmod, C, exec, foot -w 640x400 -a popup -H hyprpicker
bind = $mainmod, E, exec, dolphin
bind = $mainmod, F, fullscreen,1
--- /dev/null
+# /etc/skel/.bash_profile
+
+export VDPAU_DRIVER=radeonsi
+export EDITOR="kcr edit"
+export FZF_DEFAULT_OPTS='--multi --layout=reverse --preview-window=down:60%'
+
+# This file is sourced by bash for login shells. The following line
+# runs your .bashrc and is recommended by the bash info pages.
+if [[ -f ~/.bashrc ]] ; then
+ . ~/.bashrc
+fi
+
+# autorun X11
+if [ -z $(pgrep X) ] ; then
+ #startx
+ #dbus-launch --exit-with-session /usr/bin/startplasma-wayland
+ #dbus-launch --exit-with-session Hyprland
+ tbsm
+fi
+
--- /dev/null
+#!/bin/bash
+# /etc/skel/.bashrc
+#
+# This file is sourced by all *interactive* bash shells on startup,
+# including some apparently interactive shells such as scp and rcp
+# that can't tolerate any output. So make sure this doesn't display
+# anything or bad things will happen !
+
+export PATH="$PATH:/opt/android-sdk/platform-tools/"
+export PATH="$PATH:~/.cargo/bin:~/.local/bin:~/Applications/"
+
+export BROWSER='qutebrowser "--untrusted-args %u"'
+export EDITOR="kks edit"
+export PAGER="less"
+export VDPAU_DRIVER="radeonsi"
+export XZ_OPT="--threads=16"
+
+alias grep='grep -i'
+alias gcp="git cherry-pick"
+alias glo="git log --oneline"
+alias nano='nano -_qpT4 '
+alias free='free -h --si'
+
+alias ls='exa --icons --time-style=iso --group-directories-first'
+alias ll='exa --icons --group --time-style=iso --group-directories-first -l'
+alias l1='exa --icons --group -1 --grid --time-style=iso --group-directories-first'
+alias la='ll -d && ll'
+alias lw='exa --icons --group --long --grid --time-style=iso --group-directories-first'
+alias lt='exa --icons --group --long --sort=mod -t=mod --time-style=iso --group-directories-first'
+
+alias emergelog='sudo cat /var/log/emerge.log | grep "started\|completed\|exiting"'
+
+alias K='kcr-fzf-shell'
+alias KK='K --working-directory .'
+
+# Open files _from_ and _to_ a session.
+# $ :f src
+# $ f: mawww/kakoune
+alias :f='kcr fzf files'
+alias f:='KK kcr fzf files'
+alias fm:='K sidetree --working-directory'
+
+alias :g='kcr fzf grep'
+alias g:='KK kcr fzf grep'
+
+# Test for an interactive shell. There is no need to set anything
+# past this point for scp and rcp, and it's important to refrain from
+# outputting anything in those cases.
+if [[ $- != *i* ]] ; then
+ # Shell is non-interactive. Be done now!
+ return
+fi
+
+# Put your fun stuff here.
+#
+[ -x /bin/fish ] && SHELL=/bin/fish exec fish