You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
xsetroot -cursor_name left_ptr
|
|
|
|
|
|
|
|
# Compose key
|
|
|
|
setxkbmap -option compose:rctrl
|
|
|
|
|
|
|
|
# Polybar
|
|
|
|
~/.config/polybar/launch.sh
|
|
|
|
|
|
|
|
# Picom
|
|
|
|
picom --config ~/.config/picom/picom.conf --backend xrender &
|
|
|
|
|
|
|
|
# Wallpaper
|
|
|
|
feh --bg-center ~/dotfiles/wallpaper.jpg
|
|
|
|
|
|
|
|
# Kill sxhkd & start a new instance
|
|
|
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
|
|
|
|
|
|
# Define workspaces
|
|
|
|
bspc monitor -d I II III IV V VI VII VIII IX X
|
|
|
|
|
|
|
|
bspc config border_width 1
|
|
|
|
bspc config window_gap 6
|
|
|
|
|
|
|
|
bspc config split_ratio 0.52
|
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
|
|
|
|
|
|
|
bspc rule -a android-studio state=floating border=off follow=on
|
|
|
|
bspc rule -a librewolf desktop=^3
|
|
|
|
bspc rule -a Chromium desktop=^3
|
|
|
|
bspc rule -a Spotify desktop=^2
|
|
|
|
bspc rule -a discord desktop=^1
|