Skip to content

vsviniciuslima/my-os-customizations

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 

Repository files navigation

nagaozen OS customizations and notes

Initialization

I'm currently using a Manjaro/XFCE + gedit 2.30.4 (a bit modified) setup for my daily work.

/home/nagaozen/

This package provides a /home/nagaozen/ which probably doesn't exists in your system, so just copy the contents from inside this folder to your own user folder. Don't forget the dot folders (the invisible ones).

et cetera

Just merge all folders, except /home/ as mentioned before, to the file system /.

Compile modified tools

/home/nagaozen/ comes with a modified version of ctags, gedit e gedit plugins. You must install dependencies before trying to compile:

$ yaourt -S gconf gcolor2 pygtksourceview2 enchant1.6 desktop-file-utils iso-codes libsm python2 python2-gconf vte-legacy
$ yaourt -S gnome-doc-utils intltool

then, compile ctags:

$ ./configure
$ make
$ sudo make install

compile gedit:

$ export PYTHON=/usr/bin/python2
$ ./configure --disable-scrollkeeper --enable-python
$ make LDFLAGS="$LDFLAGS -lgmodule-2.0 -lICE"
$ sudo make install

copy gedit-plugins:

$ sudo cp -r usr /

webkit package for python2 (optional)

NOTE: Only required for using Webkit inside gedit!

$ yaourt -S icu59 webkitgtk2 pywebkitgtk

System Monitor

$ yaourt xfce4-multiload-ng-plugin-gtk3

Themes and Icons

$ yaourt adapta-maia-theme
$ yaourt papirus-icon-theme-git
$ yaourt papirus-libreoffice-theme

$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_background" --type bool false
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/use_theme_colors" --type bool false
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/palette" --type string "#000000:#E06C75:#98c379:#d19a66:#61aeee:#c678dd:#56b6c2:#abb2bf:#5c6370:#e06c75:#98c379:#d19a66:#62afee:#c678dd:#56b6c2:#ffffff"
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/background_color" --type string "#282c34"
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/foreground_color" --type string "#abb2bf"
$ gconftool-2 --set "/apps/gnome-terminal/profiles/Default/font" --type string "Anka/Coder Narrow 10"

Fonts

$ yaourt ttf-iosevka ttf-roboto

Fixes

Desktop Icons Positions

If somehow your desktop icons are losing their positions between reboots, you can set their properties as immutable:

quick method

$ ./freeze_desktop.sh	

manual method

$ chattr +i ~/.config/xfce4/desktop/icons*

Then, if you want to change their position again you need to turn immutable off:

quick method

$ ./unfreeze_desktop.sh	

manual method

$ chattr -i ~/.config/xfce4/desktop/icons*

About

Live repository for configuring a basic development machine like mine. Covers modified versions of `gedit`, `ctags` and some extra stuff for `gtksourceview2`.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 44.1%
  • Makefile 25.4%
  • HTML 10.4%
  • Shell 9.2%
  • Python 9.0%
  • Roff 0.7%
  • Other 1.2%