remove x dir

auto-flake-update
Yorick van Pelt 2021-05-07 16:58:09 +02:00
parent c4b2483d02
commit 54d405f414
13 changed files with 0 additions and 206 deletions

View File

@ -1,14 +0,0 @@
<Multi_key> <s> <u> : "∑" U2211 # N-ARY SUMMATION
<Multi_key> <a> <l> : "∀" U2200 # FOR ALL
<Multi_key> <e> <x> : "∃" U2201 # THERE EXISTS
<Multi_key> <l> <a> : "λ" # SMALL GREEK LETTER LAMBDA
<Multi_key> <d> <e> : "Δ" # CAPITAL GREEK LETTER DELTA
<Multi_key> <question> <exclam> : "‽" U203D # INTERROBANG
<Multi_key> <exclam> <question> : "‽" U203D # INTERROBANG
<Multi_key> <colon> <3> : "🐱" U1F431 # CAT
<Multi_key> <p> <o> <o> : "💩" U1F4A9

View File

@ -1,60 +0,0 @@
! Common
#define S_yellow #b58900
#define S_orange #cb4b16
#define S_red #dc322f
#define S_magenta #d33682
#define S_violet #6c71c4
#define S_blue #268bd2
#define S_cyan #2aa198
#define S_green #859900
#include "/home/yorick/dotfiles/x/solarized/actual"
! To only apply colors to your terminal, for example, prefix
! the color assignment statement with its name. Example:
!
*background: S_base03
URxvt*background: S_base03_transp
! S_base03
*foreground: S_base0
*cursorColor: S_base1
*pointerColorBackground: S_base01
*pointerColorForeground: S_base1
*color0: S_base02
*color1: S_red
*color2: S_green
*color3: S_yellow
*color4: S_blue
*color5: S_magenta
*color6: S_cyan
*color7: S_base2
*color8: S_base01
*color9: S_orange
*color10: S_base01
*color11: S_base00
*color12: S_base0
*color13: S_violet
*color14: S_base1
*color15: S_base3
! scrollbar style - xvt (default), plain (most compact), next, or xterm
URxvt.scrollstyle: plain
URxvt.scrollBar_right: true
URxvt.perl-ext-common: default,matcher,font-size,vtwheel
URxvt.url-launcher: xdg-open
URxvt.matcher.button: 1
URxvt.urgentOnBell: True
URxvt.depth: 32
URxvt.borderColor: S_base03
! URxvt.background: [95]#202020
*font: xft:DejaVu Sans Mono:size=11:antialias=true:hinting=true
polybar.font: DejaVu Sans Mono:size=11:antialias=true:hinting=true;2
! URxvt.boldFont: xft:SourceCodePro:bold:size=12:antialias=true:hinting=true
URxvt.geometry: 100x30
URxvt.scrollColor: S_base0
rofi.font: DejaVu Sans Mono 11
Emacs.font: DejaVu Sans Mono-11
URxvt.font-size.step: 4
URxvt.keysym.C-equal: perl:font-size:increase
URxvt.keysym.C-minus: perl:font-size:decrease
#include "/home/yorick/dotfiles/result/setdpi"

View File

@ -1,89 +0,0 @@
# Configuration file for libinput-gestures.
#
# The default configuration file exists at /etc/libinput-gestures.conf
# but a user can create a personal custom configuration file at
# ~/.config/libinput-gestures.conf.
#
# Lines starting with '#' and blank lines are ignored. Currently
# "gesture" and "device" configuration keywords are supported as
# described below. The keyword can optionally be appended with a ":" (to
# maintain compatibility with original format configuration files).
#
# Each gesture line has 3 [or 4] arguments:
#
# action motion [finger_count] command
#
# where action and motion is either:
# swipe up
# swipe down
# swipe left
# swipe right
# pinch in
# pinch out
#
# command is the remainder of the line and is any valid shell command +
# arguments.
#
# finger_count is a single numeric digit and is optional (and is
# typically 3 or 4). If specified then the command is executed when
# exactly that number of fingers is used in the gesture. If not
# specified then the command is executed when that gesture is executed
# with any number of fingers. Gesture lines specified with finger_count
# have priority over the same gesture specified without any
# finger_count.
#
# Typically command will be xdotool, or wmctrl. See "man xdotool" for
# the many things you can action with that tool. Note that unfortunately
# xdotool does not work with native Wayland clients.
#
# Note the default is an "internal" command that uses wmctrl to switch
# workspaces and, unlike xdotool, works on both Xorg and Wayland (via
# XWayland). It also can be configured for vertical and horizontal
# switching over tabular workspaces, as per the example below. You can
# also add "-w" to the internal command to allow wrapping workspaces.
# Move to next workspace (works for GNOME/KDE/etc on Wayland and Xorg)
gesture swipe up _internal ws_up
#gesture swipe up xdotool key super+Page_Down
# Move to prev workspace (works for GNOME/KDE/etc on Wayland and Xorg)
gesture swipe down _internal ws_down
#gesture swipe down xdotool key super+Page_Up
# Browser go forward (works only for Xorg, and Xwayland clients)
gesture swipe left xdotool key alt+Right
# Browser go back (works only for Xorg, and Xwayland clients)
gesture swipe right xdotool key alt+Left
# Example of 8 static workspaces, e.g. using KDE virtual-desktops,
# arranged in 2 rows of 4 across using swipe up/down/left/right to
# navigate in fixed planes. Must match how you have configured your
# virtual desktops.
#gesture swipe up _internal --col=2 ws_up
#gesture swipe down _internal --col=2 ws_down
#gesture swipe left _internal --row=4 ws_up
#gesture swipe right _internal --row=4 ws_down
# GNOME SHELL open/close overview (works for GNOME on Wayland and Xorg)
#gesture pinch in dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();'
#gesture pinch out dbus-send --session --type=method_call --dest=org.gnome.Shell /org/gnome/Shell org.gnome.Shell.Eval string:'Main.overview.toggle();'
gesture pinch in xdotool key ctrl+minus
gesture pinch out xdotool key ctrl+equal
# This application normally determines your touchpad device
# automatically. Some users may have multiple touchpads but by default
# we use only the first one found. However, you can choose to specify
# the explicit device name to use. Run libinput-list-devices to work out
# the name of your device (from the "Device:" field). Then add a device
# line specifying that name, e.g:
#
device DLL075B:01 06CB:76AF Touchpad
#
# Or you can choose to use ALL touchpad devices by setting the device
# name to "all". This reduces performance slightly so only set this if
# you need to.
#
#device all

View File

@ -1 +0,0 @@
/home/yorick/.nix-profile/share/icons/Vanilla-DMZ-AA

View File

@ -1,3 +0,0 @@
[icon theme]
Inherits=Vanilla-DMZ-AA

View File

@ -1 +0,0 @@
/home/yorick/.nix-profile/share/icons/hicolor

View File

@ -1,3 +0,0 @@
default.nix
compton_default.conf
compton_intel.conf

View File

@ -1,6 +0,0 @@
export MOZ_USE_XINPUT2=1
if [ "$HOSTNAME" = jarvis ]; then
export SPOTIFY_DEVICE_SCALE_FACTOR=1.75
printf '%s\n' "on the right host"
fi

View File

@ -1,6 +0,0 @@
{writeTextDir, dpi ? 96}:
writeTextDir "setdpi" ''
Xft.dpi: ${toString dpi}
*dpi: ${toString dpi}
''

View File

@ -1 +0,0 @@
light

View File

@ -1 +0,0 @@
dark

View File

@ -1,11 +0,0 @@
! Dark
#define S_base03 #002b36
#define S_base03_transp [85]#002b36
*fading: 10
#define S_base02 #073642
#define S_base01 #586e75
#define S_base00 #657b83
#define S_base0 #839496
#define S_base1 #93a1a1
#define S_base2 #eee8d5
#define S_base3 #fdf6e3

View File

@ -1,10 +0,0 @@
! Light
#define S_base03 #fdf6e3
#define S_base03_transp [90]#fdf6e3
#define S_base02 #eee8d5
#define S_base01 #93a1a1
#define S_base00 #839496
#define S_base0 #657b83
#define S_base1 #586e75
#define S_base2 #073642
#define S_base3 #002b36