diff --git a/.config/dconf/user b/.config/dconf/user deleted file mode 100644 index 0c4f9d8..0000000 Binary files a/.config/dconf/user and /dev/null differ diff --git a/.config/gtk-2.0/gtkfilechooser.ini b/.config/gtk-2.0/gtkfilechooser.ini new file mode 100644 index 0000000..4f558d8 --- /dev/null +++ b/.config/gtk-2.0/gtkfilechooser.ini @@ -0,0 +1,11 @@ +[Filechooser Settings] +LocationMode=path-bar +ShowHidden=false +ShowSizeColumn=true +GeometryX=0 +GeometryY=92 +GeometryWidth=840 +GeometryHeight=630 +SortColumn=name +SortOrder=ascending +StartupMode=recent diff --git a/.config/gtk-3.0/settings.ini b/.config/gtk-3.0/settings.ini new file mode 100644 index 0000000..3bfb033 --- /dev/null +++ b/.config/gtk-3.0/settings.ini @@ -0,0 +1,17 @@ +[Settings] +gtk-theme-name=Adwaita-dark +gtk-icon-theme-name=Archdroid-Grey +gtk-font-name=Cantarell 11 +gtk-cursor-theme-name=capitaine-cursors-hidpi +gtk-cursor-theme-size=0 +gtk-toolbar-style=GTK_TOOLBAR_BOTH +gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR +gtk-button-images=1 +gtk-menu-images=1 +gtk-enable-event-sounds=1 +gtk-enable-input-feedback-sounds=1 +gtk-xft-antialias=1 +gtk-xft-hinting=1 +gtk-xft-hintstyle=hintfull +gtk-application-prefer-dark-theme=true +gtk-modules=gail:atk-bridge diff --git a/.config/i3/correct.sh b/.config/i3/correct.sh deleted file mode 100644 index edaeb29..0000000 --- a/.config/i3/correct.sh +++ /dev/null @@ -1,2 +0,0 @@ -xinput set-prop 11 306 -76, -76 -xinput set-prop 11 313 0, 0, 0, 0, 1, 2, 3 diff --git a/.config/i3/i3blocks.conf b/.config/i3/i3blocks.conf deleted file mode 100644 index 9e9837b..0000000 --- a/.config/i3/i3blocks.conf +++ /dev/null @@ -1,55 +0,0 @@ -command=/usr/lib/i3blocks/$BLOCK_NAME -separator_block_width=20 -markup=none - -# Weahter -[Weather] -separator=false -command=sh ~/.config/i3/scripts/weather3.sh "magnitogorsk" -interval=300 -color=#e0e0e0 - -[volume] -label=♪ -instance=Master -interval=1 -signal=10 -separator=false -color=#e0e0e0 - -[memory] -label= -instance=/usr/swap -separator=false -interval=10 -color=#e0e0e0 - -[disk] -label= -instance=/mnt -interval=30 -separator=false -color=#e0e0e0 - -[cpu_usage] -label= -command=/usr/lib/i3blocks/cpu_usage -interval=1 -separator=false -color=#e0e0e0 - -#[bandwidth] -#label= -#instance=wlp4s0 -#interval=1 -#color=#e0e0e0 - -[battery] -command=python3 ~/.config/i3/scripts/battery.py -interval=5 - -[time] -command= date '+%H:%M:%S %d/%m/%Y' -label= -interval=1 -color=#e0e0e0 diff --git a/.config/i3/scripts/battery.py b/.config/i3/scripts/battery.py deleted file mode 100644 index 98d63d5..0000000 --- a/.config/i3/scripts/battery.py +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env python3 -# -# Copyright (C) 2016 James Murphy -# Licensed under the GPL version 2 only -# -# A battery indicator blocklet script for i3blocks - -from subprocess import check_output - -status = check_output(['acpi'], universal_newlines=True) - -if not status: - # stands for no battery found - fulltext = "\uf00d \uf240" - percentleft = 100 -else: - # if there is more than one battery in one laptop, the percentage left is - # available for each battery separately, although state and remaining - # time for overall block is shown in the status of the first battery - batteries = status.split("\n") - state_batteries=[] - commasplitstatus_batteries=[] - percentleft_batteries=[] - for battery in batteries: - if battery!='': - state_batteries.append(battery.split(": ")[1].split(", ")[0]) - commasplitstatus = battery.split(", ") - percentleft_batteries.append(int(commasplitstatus[1].rstrip("%\n"))) - commasplitstatus_batteries.append(commasplitstatus) - state = state_batteries[0] - commasplitstatus = commasplitstatus_batteries[0] - percentleft = int(sum(percentleft_batteries)/len(percentleft_batteries)) - # stands for charging - FA_LIGHTNING = "\uf0e7" - - # stands for plugged in - FA_PLUG = "\uf1e6" - - fulltext = "" - timeleft = "" - - if state == "Discharging": - time = commasplitstatus[-1].split()[0] - time = ":".join(time.split(":")[0:2]) - elif state == "Full": - fulltext = FA_PLUG + " " - elif state == "Unknown": - fulltext = "\uf128" - else: - fulltext = FA_LIGHTNING + " " + FA_PLUG + " " - - form = '{}%' - fulltext += form.format(percentleft) - fulltext += timeleft - -print(fulltext) diff --git a/.config/i3/scripts/weather3.sh b/.config/i3/scripts/weather3.sh deleted file mode 100644 index c849331..0000000 --- a/.config/i3/scripts/weather3.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/bash - -METRIC=1 #Should be 0 or 1; 0 for F, 1 for C - -if [ -z $1 ]; then -echo -echo "USAGE: weather.sh " -echo -exit 0; -fi - -curl -s http://rss.accuweather.com/rss/liveweather_rss.asp\?metric\=${METRIC}\&locCode\=$1 | perl -ne 'use utf8; if (/Currently/) {chomp;/\Currently: (.*)?\<\/title\>/; my @values=split(":",$1); if( $values[0] eq "Sunny" || $values[0] eq "Mostly Sunny" || $values[0] eq "Partly Sunny" || $values[0] eq "Intermittent Clouds" || $values[0] eq "Hazy Sunshine" || $values[0] eq "Hazy Sunshine" || $values[0] eq "Hot") -{ -my $sun = ""; -binmode(STDOUT, ":utf8"); -print "$sun"; -} -if( $values[0] eq "Mostly Cloudy" || $values[0] eq "Cloudy" || $values[0] eq "Dreary (Overcast)" || $values[0] eq "Fog") -{ -my $cloud = ""; -binmode(STDOUT, ":utf8"); -print "$cloud"; -} -if( $values[0] eq "Showers" || $values[0] eq "Mostly Cloudy w/ Showers" || $values[0] eq "Partly Sunny w/ Showers" || $values[0] eq "T-Storms"|| $values[0] eq "Mostly Cloudy w/ T-Storms"|| $values[0] eq "Partly Sunny w/ T-Storms"|| $values[0] eq "Rain") -{ -my $rain = ""; -binmode(STDOUT, ":utf8"); -print "$rain"; -} -if( $values[0] eq "Windy") -{ -my $wind = ""; -binmode(STDOUT, ":utf8"); -print "$wind"; -} -if($values[0] eq "Flurries" || $values[0] eq "Mostly Cloudy w/ Flurries" || $values[0] eq "Partly Sunny w/ Flurries"|| $values[0] eq "Snow"|| $values[0] eq "Mostly Cloudy w/ Snow"|| $values[0] eq "Ice"|| $values[0] eq "Sleet"|| $values[0] eq "Freezing Rain"|| $values[0] eq "Rain and Snow"|| $values[0] eq "Cold") -{ -my $snow = ""; -binmode(STDOUT, ":utf8"); -print "$rain"; -} -if($values[0] eq "Clear" || $values[0] eq "Mostly Clear" || $values[0] eq "Partly Cloudy"|| $values[0] eq "Intermittent Clouds"|| $values[0] eq "Hazy Moonlight"|| $values[0] eq "Mostly Cloudy"|| $values[0] eq "Partly Cloudy w/ Showers"|| $values[0] eq "Mostly Cloudy w/ Showers"|| $values[0] eq "Partly Cloudy w/ T-Storms"|| $values[0] eq "Mostly Cloudy w/ Flurries" || $values[0] eq "Mostly Cloudy w/ Snow") -{ -my $night = ""; -binmode(STDOUT, ":utf8"); -print "$night"; -} -print"$values[1]"; }' \ No newline at end of file diff --git a/.config/i3status/config b/.config/i3status/config deleted file mode 100644 index 60b926e..0000000 --- a/.config/i3status/config +++ /dev/null @@ -1,25 +0,0 @@ -general { - output_format = "i3bar" - colors = true - interval = 1 -} - -order += "cpu_tempereture 0" -order += "volume master" -order += "tztime local" - -cpu_temperature 0 { - format = "%degrees C" - path = "/sys/devices/platform/coretemp.0/temp1_input" -} -tztime local { - format = "%H:%M:%S %d/%m/%Y" -} - -volume master { - format = "♪ %volume" - format_muted = "♪ muted (%volume)" - device = "default" - mixer = "Master" - mixer_idx = 0 -} diff --git a/.config/i3status/tmp.txt b/.config/i3status/tmp.txt deleted file mode 100644 index d00491f..0000000 --- a/.config/i3status/tmp.txt +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.config/i3status/weather.txt b/.config/i3status/weather.txt deleted file mode 100644 index f04c001..0000000 --- a/.config/i3status/weather.txt +++ /dev/null @@ -1 +0,0 @@ -29 diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf old mode 100644 new mode 100755 index b1d968b..2885388 --- a/.config/kitty/kitty.conf +++ b/.config/kitty/kitty.conf @@ -1,5 +1,5 @@ font_family monospace -font_size 14.0 +font_size 18.0 bold_font auto italic_font auto bold_italic_font auto diff --git a/.config/polybar/config b/.config/polybar/config deleted file mode 100644 index e4a09bf..0000000 --- a/.config/polybar/config +++ /dev/null @@ -1,410 +0,0 @@ -;========================================================== -; -; -; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗ -; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗ -; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝ -; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗ -; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║ -; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ -; -; -; To learn more about how to configure Polybar -; go to https://github.com/polybar/polybar -; -; The README contains a lot of information -; -;========================================================== - -[colors] -;background = ${xrdb:color0:#222} -background = #202025 -background-alt = #44444A -;foreground = ${xrdb:color7:#222} -foreground = #dfdfdf -foreground-alt = #555 -primary = #dfdfdf -secondary = #7a7a7a -alert = #bd2c40 - -[bar/main] -;monitor = ${env:MONITOR:HDMI-1} -width = 100% -height = 32 -;offset-x = 1% -;offset-y = 1% -fixed-center = false - -background = ${colors.background} -foreground = ${colors.foreground} - -line-size = 3 -line-color = #dfdfdf - -border-size = 0 -border-color = #00000000 - -padding-left = 1 -padding-right = 2 - -module-margin-left = 1 -module-margin-right = 2 - -font-0 = FontAwesome5Free:style=Solid:size=11;1 -font-1 = FontAwesome5Free:style=Regular:size=11;1 -font-2 = FontAwesome:style=Regular:size=11;1 -font-3 = siji:pixelsize=10;1 - -modules-left = bspwm i3 -modules-center = -modules-right = weather alsa xkeyboard temperature battery wlan eth date powermenu -tray-position = right -tray-padding = 2 -;tray-background = #0063ff - -;wm-restack = bspwm -;wm-restack = i3 - -;override-redirect = true - -;scroll-up = bspwm-desknext -;scroll-down = bspwm-deskprev - -scroll-up = i3wm-wsnext -scroll-down = i3wm-wsprev - -cursor-click = pointer -cursor-scroll = ns-resize - -[module/xwindow] -type = internal/xwindow -label = %title:0:30:...% - -[module/xkeyboard] -type = internal/xkeyboard -blacklist-0 = num lock - -format-prefix = " " -format-prefix-foreground = ${colors.foreground} - -label-layout = %layout% - -label-indicator-padding = 2 -label-indicator-margin = 0 -label-indicator-background = ${colors.background-alt} - -[module/filesystem] -type = internal/fs -interval = 25 - -mount-0 = / - -label-mounted = %{F#0a81f5}%mountpoint%%{F-}: %percentage_used%% -label-unmounted = %mountpoint% not mounted -label-unmounted-foreground = ${colors.foreground-alt} - -[module/bspwm] -type = internal/bspwm - -label-focused = %index% -label-focused-background = ${colors.background-alt} -label-focused-padding = 2 - -label-occupied = %index% -label-occupied-padding = 2 - -label-urgent = %index%! -label-urgent-background = ${colors.alert} -label-urgent-padding = 2 - -label-empty = %index% -label-empty-foreground = ${colors.foreground-alt} -label-empty-padding = 2 - -; Separator in between workspaces -; label-separator = | - -[module/i3] -type = internal/i3 -format = -index-sort = true -wrapping-scroll = false - -; Only show workspaces on the same output as the bar -;pin-workspaces = true - -label-mode-padding = 2 -label-mode-foreground = #000 -label-mode-background = ${colors.primary} - -; focused = Active workspace on focused monitor -label-focused = %index% -label-focused-background = ${colors.background-alt} -label-focused-padding = 2 - -; unfocused = Inactive workspace on any monitor -label-unfocused = %index% -label-unfocused-padding = 2 - -; visible = Active workspace on unfocused monitor -label-visible = %index% -label-visible-background = ${self.label-focused-background} -label-visible-padding = ${self.label-focused-padding} - -; urgent = Workspace with urgency hint set -label-urgent = %index% -label-urgent-background = ${colors.alert} -label-urgent-padding = 2 - -; Separator in between workspaces -; label-separator = | - - -[module/mpd] -type = internal/mpd -format-online = - -icon-prev =  -icon-stop =  -icon-play =  -icon-pause =  -icon-next =  - -label-song-maxlen = 25 -label-song-ellipsis = true - -[module/xbacklight] -type = internal/xbacklight - -format =